Skip to content

Commit

Permalink
Fix or operator
Browse files Browse the repository at this point in the history
  • Loading branch information
pavetok committed Sep 17, 2023
1 parent 1b1e39c commit 7a33fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/solution-sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: mikepenz/action-junit-report@v4
if: ${{ steps.binaries.outcome == 'success' or steps.binaries.outcome == 'failure' }}
if: ${{ steps.binaries.outcome == 'success' || steps.binaries.outcome == 'failure' }}
with:
check_name: Unit Test Report
report_paths: "**/target/surefire-reports/TEST-*.xml"
Expand Down

0 comments on commit 7a33fe0

Please sign in to comment.