-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure tests are counted and actually ran @ben-manes
- Loading branch information
1 parent
2b23d30
commit 5208a4e
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,10 @@ jobs: | |
- 8 | ||
- 11 | ||
|
||
permissions: | ||
checks: write | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Checkout Project | ||
uses: actions/checkout@v4 | ||
|
@@ -40,6 +44,14 @@ jobs: | |
- name: Run build with caching enabled | ||
run: ./gradlew clean build -s | ||
|
||
- name: Publish Test Report | ||
uses: EnricoMi/[email protected] | ||
if: always() | ||
with: | ||
comment_mode: off | ||
action_fail_on_inconclusive: true | ||
files: '**/build/test-results/test/TEST-*.xml' | ||
|
||
- name: Run examples | ||
run: | | ||
export VERSION_NAME=$(cat gradle.properties | grep -w "VERSION_NAME" | cut -d'=' -f2) | ||
|