summaryrefslogtreecommitdiff
path: root/.github/workflows/checks.yml
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-01-22 16:12:49 +0100
committerByteHamster <info@bytehamster.com>2022-01-22 17:16:37 +0100
commit147c996f60e413a8ca434ec84b5241c0605b6f32 (patch)
tree7ba2aa4b6eba19cd9d9d61cf65ec2f576c130088 /.github/workflows/checks.yml
parent2243ca372e9fd7272d61913d63d000060a7af9f6 (diff)
downloadAntennaPod-147c996f60e413a8ca434ec84b5241c0605b6f32.zip
Actually run all tests on GitHub Actions
Diffstat (limited to '.github/workflows/checks.yml')
-rw-r--r--.github/workflows/checks.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index d55817141..314c574df 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -72,12 +72,15 @@ jobs:
matrix:
include:
- variant: "PlayDebug"
+ base-variant: "Debug"
execute-tests: true
upload-artifact: true
- variant: "PlayRelease"
+ base-variant: "Release"
execute-tests: true
upload-artifact: false
- variant: "FreeRelease"
+ base-variant: "Release"
execute-tests: false
upload-artifact: false
steps:
@@ -95,7 +98,7 @@ jobs:
run: ./gradlew assemble${{ matrix.variant }}
- name: Test
if: matrix.execute-tests == true
- run: ./gradlew test${{ matrix.variant }}UnitTest
+ run: ./gradlew test${{ matrix.variant }}UnitTest test${{ matrix.base-variant }}UnitTest
- uses: actions/upload-artifact@v2
if: matrix.upload-artifact == true
with: