Skip to content

Commit

Permalink
Fix test summary action
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jan 27, 2024
1 parent 730cf3d commit 0376467
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ jobs:
uses: gradle/gradle-build-action@v2
- name: Build
run: ./gradlew build
- name : Test Summary
uses : EnricoMi/[email protected]
with :
junit_files : "**/build/test-results/test/TEST-*.xml"
if : always()
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: Test Results
path: |
**/build/test-results/test/TEST-*.xml
- name: Determine Status
run: |
if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then
Expand Down

0 comments on commit 0376467

Please sign in to comment.