Skip to content

Commit 85f8d90

Browse files
Manuel Vivomanuelvicnt
authored andcommitted
Addresses PR comments
1 parent d2e71aa commit 85f8d90

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

JetNews/.github/workflows/ci.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@ jobs:
1010
ci:
1111
name: Build + Test
1212
runs-on: macOS-latest
13+
strategy:
14+
matrix:
15+
api-level: [21, 29]
1316
steps:
1417
- name: Checkout
1518
uses: actions/checkout@v1
19+
with:
20+
fetch-depth: 1
1621

1722
# TODO: Cache dependencies using actions/cache
1823

@@ -26,7 +31,7 @@ jobs:
2631
- name: Run instrumentation tests
2732
uses: reactivecircus/android-emulator-runner@v2
2833
with:
29-
api-level: 21
30-
arch: x86_64
34+
api-level: ${{ matrix.api-level }}
35+
arch: x86
3136
disable-animations: true
3237
script: ./gradlew connectedCheck --stacktrace

0 commit comments

Comments
 (0)