Combine build and test tasks in workflows

This commit is contained in:
arkon 2022-05-19 13:44:13 -04:00
parent 2761d27aaa
commit 4be9b03ac6
2 changed files with 4 additions and 14 deletions

View File

@ -34,12 +34,7 @@ jobs:
mkdir -p ~/.gradle
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
- name: Build app
- name: Build app and run unit tests
uses: gradle/gradle-command-action@v2
with:
arguments: assembleStandardRelease
- name: Run unit tests
uses: gradle/gradle-command-action@v2
with:
arguments: test
arguments: assembleStandardRelease testStandardReleaseUnitTest

View File

@ -35,15 +35,10 @@ jobs:
mkdir -p ~/.gradle
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
- name: Build app
- name: Build app and run unit tests
uses: gradle/gradle-command-action@v2
with:
arguments: assembleStandardRelease
- name: Run unit tests
uses: gradle/gradle-command-action@v2
with:
arguments: test
arguments: assembleStandardRelease testStandardReleaseUnitTest
# Sign APK and create release for tags