remaned ta10 to tarzan #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "11" | |
distribution: "adopt" | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
working-directory: ./apps/mobileattester | |
run: chmod +x gradlew | |
- name: Run lint | |
working-directory: ./apps/mobileattester | |
run: ./gradlew lintDebug | |
- name: Upload html test report | |
uses: actions/upload-artifact@v2 | |
with: | |
name: lint.html | |
path: ./apps/mobileattester/app/build/reports/lint-results-debug.html | |
- name: Build with Gradle | |
working-directory: ./apps/mobileattester | |
run: ./gradlew build | |
test: | |
needs: [build] | |
name: Run Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: "11" | |
distribution: "adopt" | |
cache: gradle | |
- name: Run unit tests | |
working-directory: ./apps/mobileattester | |
run: bash ./gradlew test --stacktrace | |
apk: | |
needs: [test] | |
name: Generate APK | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Grant execute permission for gradlew | |
working-directory: ./apps/mobileattester | |
run: chmod +x gradlew | |
- name: Build APK | |
working-directory: ./apps/mobileattester | |
run: ./gradlew assembleDebug | |
- name: Upload APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app | |
path: ./apps/mobileattester/app/build/outputs/apk/debug/app-debug.apk |