Skip to content

Commit

Permalink
Merge pull request #14 from DesarrolloAntonio/ci_cd
Browse files Browse the repository at this point in the history
- New CI
  • Loading branch information
DesarrolloAntonio authored Feb 9, 2024
2 parents 0278085 + f8f58b8 commit 023278d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Android CI

on:
push:
branches: [ "ci_cd", "master" ]
pull_request:
branches: [ "ci_cd", "master" ]

jobs:
build:
runs-on: ubuntu-latest


steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build app
run: ./gradlew assemble

0 comments on commit 023278d

Please sign in to comment.