Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tattali committed Dec 21, 2024
1 parent f679cb8 commit 538e1ac
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
php: ['8.2']
stability: [prefer-stable]
minimum-stability: [stable]
symfony-version: [7.0.*]
symfony-version: [7.2.*]
is-current: [true]
include:
- php: '8.3'
symfony-version: 7.0.*
symfony-version: 7.2.*
stability: prefer-stable
- php: '8.4'
symfony-version: 7.0.*
symfony-version: 7.2.*
stability: prefer-stable

name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony-require }}
Expand All @@ -56,7 +56,8 @@ jobs:
run: |
composer global config --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex
composer update --no-interaction --no-progress --no-scripts --prefer-stable
composer config minimum-stability ${{ matrix.minimum-stability }}
composer update --no-interaction --prefer-dist
- name: PHP-CS-Fixer
continue-on-error: ${{ !matrix.is-current }}
Expand All @@ -68,7 +69,7 @@ jobs:

- name: PHPStan
continue-on-error: ${{ !matrix.is-current }}
run: vendor/bin/phpstan analyse src tests --level 7
run: vendor/bin/phpstan analyse src tests --level 9

- name: Unit and Feature tests via PHPUnit
env:
Expand Down

0 comments on commit 538e1ac

Please sign in to comment.