From ab7dcaba74f5406316dae027c59d155197d5bfee Mon Sep 17 00:00:00 2001 From: Josh Kasten Date: Wed, 21 Feb 2024 00:53:41 -0500 Subject: [PATCH] run only the release tests to speed up tests Test were being run 3 times since it was running debug, release, and unity targets. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2aa1feb062..c5e77c3d09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: "[Test] SDK Unit Tests" working-directory: OneSignalSDK run: | - ./gradlew test --console=plain --continue + ./gradlew testReleaseUnitTest --console=plain --continue - name: Unit tests results if: failure() uses: actions/upload-artifact@v3