diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 00000000..f48c4055 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,31 @@ +name: Android CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "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: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build + - name: Upload APK + uses: actions/upload-artifact@v3.1.0 + with: + name: application + path: app/build/outputs/apk/ diff --git a/app/build.gradle b/app/build.gradle index 548580a0..44c34846 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -73,6 +73,10 @@ android { } } namespace 'bruhcollective.itaysonlab.jetispot' + + lintOptions { + abortOnError false + } } moshi {