Skip to content

Commit

Permalink
Add matrix composite results GitHub Actions job (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit authored Oct 13, 2024
1 parent 737ea47 commit 01c8651
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,16 @@ jobs:
- run: |
./gradlew clean check --refresh-dependencies -PfasterxmlVersion=${{ matrix.fasterxmlVersion }}
./gradlew codeCoverageReport
results:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Verification Results
needs: [ test ]
steps:
- run: |
if [[ "${{ needs.build.result }}" == "success" || "${{ needs.build.result }}" == "skipped" ]]; then
exit 0
else
exit 1
fi

0 comments on commit 01c8651

Please sign in to comment.