Run tests for debug/release on 23/29 (#720)
* Also run unit tests for release build * Only test on API levels 23 and 29
This commit is contained in:
parent
beaec159e8
commit
cd0621864c
1 changed files with 3 additions and 2 deletions
5
.github/workflows/pull_request.yml
vendored
5
.github/workflows/pull_request.yml
vendored
|
@ -6,7 +6,8 @@ jobs:
|
|||
runs-on: macos-latest
|
||||
strategy:
|
||||
matrix:
|
||||
api-level: [23, 25, 27, 29]
|
||||
api-level: [23, 29]
|
||||
variant: [Debug, Release]
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@master
|
||||
|
@ -20,7 +21,7 @@ jobs:
|
|||
key: gradle-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/dependencies.gradle') }}
|
||||
|
||||
- name: Run unit tests
|
||||
run: ./gradlew spotlessCheck testDebug lintDebug -Dpre-dex=false
|
||||
run: ./gradlew spotlessCheck test${{ matrix.variant }} lint${{ matrix.variant}} -Dpre-dex=false
|
||||
|
||||
- name: Run instrumentation tests
|
||||
uses: reactivecircus/android-emulator-runner@v2
|
||||
|
|
Loading…
Reference in a new issue