Skip to content

Commit

Permalink
chore: fix github action test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
latonz committed Apr 10, 2024
1 parent 8dd429e commit 8de33aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: clearlyip/code-coverage-report-action@v4
id: code_coverage_report_action
# dont run for dependabot
if: always() && ${{ github.actor != 'dependabot[bot]'}}
if: ${{ always() && github.actor != 'dependabot[bot]'}}
with:
filename: 'Cobertura.xml'
overall_coverage_fail_threshold: 75
Expand Down

0 comments on commit 8de33aa

Please sign in to comment.