We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e71aa commit 85f8d90Copy full SHA for 85f8d90
JetNews/.github/workflows/ci.yaml
@@ -10,9 +10,14 @@ jobs:
10
ci:
11
name: Build + Test
12
runs-on: macOS-latest
13
+ strategy:
14
+ matrix:
15
+ api-level: [21, 29]
16
steps:
17
- name: Checkout
18
uses: actions/checkout@v1
19
+ with:
20
+ fetch-depth: 1
21
22
# TODO: Cache dependencies using actions/cache
23
@@ -26,7 +31,7 @@ jobs:
26
31
- name: Run instrumentation tests
27
32
uses: reactivecircus/android-emulator-runner@v2
28
33
with:
29
- api-level: 21
30
- arch: x86_64
34
+ api-level: ${{ matrix.api-level }}
35
+ arch: x86
36
disable-animations: true
37
script: ./gradlew connectedCheck --stacktrace
0 commit comments