From 23324990c05b260669d5a5ff4bb1940e65739682 Mon Sep 17 00:00:00 2001 From: Michael Kaye <1917473+michaelkaye@users.noreply.github.com> Date: Mon, 6 Jun 2022 17:55:03 +0100 Subject: [PATCH] Fix and/&& mixup --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d278df949c..5959fe9bb3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -51,7 +51,7 @@ jobs: script: ./gradlew theCodeCoverageReport --stacktrace $CI_GRADLE_ARG_PROPERTIES - name: Run all the codecoverage tests at once (retry if emulator failed) uses: reactivecircus/android-emulator-runner@v2 - if: always() and steps.tests.outcome == 'failure' # don't run if previous step succeeded. + if: always() && steps.tests.outcome == 'failure' # don't run if previous step succeeded. with: api-level: 28 arch: x86