From 6e620922108f1db617789fcba453445c2d76105d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernat=20Borr=C3=A1s?= Date: Thu, 16 Dec 2021 12:51:36 +0100 Subject: [PATCH] Run api 31 as other job so API 26 not fails --- .github/workflows/main.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 909a4a04..76fdc85f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,10 +47,19 @@ jobs: with: java-version: 11 - - name: Run instrumentation tests + - name: Run instrumentation tests (26) uses: ReactiveCircus/android-emulator-runner@v2.21.0 with: - api-level: ${{ matrix.api-level }} + api-level: 26 + arch: x86_64 + profile: pixel_2 + disable-animations: true + script: ./gradlew :sample:connectedCheck :barista-compose:connectedCheck + + - name: Run instrumentation tests (31) + uses: ReactiveCircus/android-emulator-runner@v2.21.0 + with: + api-level: 31 arch: x86_64 profile: pixel_2 disable-animations: true