mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 09:17:48 +01:00
Run unit tests during CI builds
This commit is contained in:
parent
bbb69482e1
commit
6d154b1e4f
2 changed files with 10 additions and 0 deletions
5
.github/workflows/build_pull_request.yml
vendored
5
.github/workflows/build_pull_request.yml
vendored
|
@ -38,3 +38,8 @@ jobs:
|
|||
uses: gradle/gradle-command-action@v2
|
||||
with:
|
||||
arguments: assembleStandardRelease
|
||||
|
||||
- name: Run unit tests
|
||||
uses: gradle/gradle-command-action@v2
|
||||
with:
|
||||
arguments: test
|
||||
|
|
5
.github/workflows/build_push.yml
vendored
5
.github/workflows/build_push.yml
vendored
|
@ -40,6 +40,11 @@ jobs:
|
|||
with:
|
||||
arguments: assembleStandardRelease
|
||||
|
||||
- name: Run unit tests
|
||||
uses: gradle/gradle-command-action@v2
|
||||
with:
|
||||
arguments: test
|
||||
|
||||
# Sign APK and create release for tags
|
||||
|
||||
- name: Get tag name
|
||||
|
|
Loading…
Reference in a new issue