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 f6bf124 commit 7cb65c1Copy full SHA for 7cb65c1
.github/workflows/Android-CI.yml
@@ -11,8 +11,12 @@ jobs:
11
name: Build & Test
12
runs-on: ${{ matrix.os }}
13
strategy:
14
+ fail-fast: false
15
matrix:
16
os: [ macOS-13 ]
17
+ api: [ 28 ]
18
+ tag: [ default ]
19
+ abi: [ x86_64 ]
20
java_version: [ 17 ]
21
steps:
22
- name: Checkout
@@ -40,9 +44,9 @@ jobs:
40
44
uses: hannesa2/action-android/[email protected]
41
45
with:
42
46
cmd: ./gradlew cAT --continue
43
- api: 28
- tag: default
- abi: x86_64
47
+ api: ${{ matrix.api }}
48
+ tag: ${{ matrix.tag }}
49
+ abi: ${{ matrix.abi }}
50
cmdOptions: -noaudio -no-boot-anim -no-window -metrics-collection
51
- name: Archive Espresso results
52
uses: actions/upload-artifact@v4
0 commit comments