From c6d17111aba08b8c52daaa222289ca8ec9b2e953 Mon Sep 17 00:00:00 2001 From: Edgar Meruvia Date: Tue, 20 Feb 2024 09:15:27 -0500 Subject: [PATCH] init GHA --- .github/workflows/android-build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/android-build.yml diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml new file mode 100644 index 0000000..21c471f --- /dev/null +++ b/.github/workflows/android-build.yml @@ -0,0 +1,29 @@ +name: Github Build Demo + +on: + push: + +jobs: + + # Job name + build_demo: + name: Build Job + runs-on: ubuntu-latest #mac-os-latest + continue-on-error: true + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup JDK 11 + uses: actions/setup-java@v3 + with: + java-version: 11 + distribution: 'temurin' + + - name: Setup gradle permissions + run: chmod +x ./gradlew + + - name: Build gradle project + run: ./gradlew build +