Skip to content

Commit

Permalink
Add extra versions to action pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
philipobenito committed Nov 10, 2024
1 parent 10716bc commit e29dbde
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.2', '7.3', '7.4']
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
coverage: [true]
composer-flags: ['']
include:
- php: '8.0'
coverage: false
- php: '8.4'
coverage: false
- php: '7.2'
coverage: false
composer-flags: '--prefer-lowest'
Expand All @@ -55,7 +51,7 @@ jobs:

- name: "Use PHPUnit 9.3+ on PHP 8"
run: composer require --no-update --dev phpunit/phpunit:^9.3
if: "matrix.php == '8.0' || matrix.php == '8.4'"
if: "matrix.php == '8.0' || matrix.php == '8.1' || matrix.php == '8.2' || matrix.php == '8.3' || matrix.php == '8.4'"

- run: composer update --no-progress ${{ matrix.composer-flags }}

Expand Down

0 comments on commit e29dbde

Please sign in to comment.