Skip to content

Commit

Permalink
Github action tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
rotimi committed May 11, 2024
1 parent 719e4e2 commit 3a5a52f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ jobs:
- name: Run PHPUnit Test Suite
run: vendor/bin/phpunit

- name: Run Rector
# Run rector for PHP 7.X but not 8.0, rector is currently blowing up with PHP 8.0
if: matrix.php != '8.0'
run: vendor/bin/rector process src --dry-run

- name: Run Psalm
# Run psalm for PHP 7.4 & 8.0 but not 7.2 & 7.3, psalm is currently blowing up with PHP 7.2 & 7.3
if: matrix.php != '7.2' && matrix.php != '7.3'
run: vendor/bin/psalm
# - name: Run Rector
# # Run rector for PHP 7.X but not 8.0, rector is currently blowing up with PHP 8.0
# if: matrix.php != '8.0'
# run: vendor/bin/rector process src --dry-run
#
# - name: Run Psalm
# # Run psalm for PHP 7.4 & 8.0 but not 7.2 & 7.3, psalm is currently blowing up with PHP 7.2 & 7.3
# if: matrix.php != '7.2' && matrix.php != '7.3'
# run: vendor/bin/psalm

0 comments on commit 3a5a52f

Please sign in to comment.