Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickcarlohickman committed Dec 14, 2024
1 parent 40b6041 commit f6b6ff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
- name: Run phpunit tests
run: |
FAIL_DEPRECATION="--fail-on-deprecation"
( [[ "${{ matrix.php }}" == "8.4" ]] && ( [[ "${{ matrix.laravel }}" == "9.*" ]] || [[ "${{ matrix.laravel }}" != "10.*" ]] ) ) && FAIL_DEPRECATION=""
./vendor/bin/phpunit $FAIL_DEPRECATION --coverage-clover ./clover.xml
( [[ "${{ matrix.php }}" == "8.0" ]] || ( [[ "${{ matrix.php }}" == "8.4" ]] && ( [[ "${{ matrix.laravel }}" == "9.*" ]] || [[ "${{ matrix.laravel }}" == "10.*" ]] ) ) ) && FAIL_DEPRECATION=""
./vendor/bin/phpunit ${FAIL_DEPRECATION} --coverage-clover ./clover.xml
# Send the code coverage file regardless of the tests passing or failing.
- name: Send coverage
Expand Down

0 comments on commit f6b6ff2

Please sign in to comment.