Skip to content

Commit

Permalink
ci: add testrun for PHP 8.4 and symfony 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris8934 committed Jul 9, 2024
1 parent 1f875b0 commit f7eb93f
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.1, 8.2, 8.3 ]
php: [ 8.1, 8.2, 8.3, 8.4 ]
deps: [ highest ]
symfony: [ 6.4.* ]
include:
Expand All @@ -21,6 +21,9 @@ jobs:
symfony: '*'
- php: 8.3
symfony: '7.0.*'
- php: 8.4
symfony: '7.1.*'

steps:
- uses: zenstruck/.github/actions/php-test-symfony@main
with:
Expand All @@ -37,24 +40,24 @@ jobs:
sca:
uses: zenstruck/.github/.github/workflows/php-stan.yml@main

fixcs:
name: Run php-cs-fixer
needs: sync-with-template
sync-with-template:
name: Sync meta files
if: (github.event_name == 'push' || github.event_name == 'schedule') && !startsWith(github.ref, 'refs/tags') && github.repository_owner == 'zenstruck'
runs-on: ubuntu-latest
steps:
- uses: zenstruck/.github@php-cs-fixer
- uses: zenstruck/.github@sync-with-template
with:
php: 8.1
key: ${{ secrets.GPG_PRIVATE_KEY }}
token: ${{ secrets.COMPOSER_TOKEN }}

sync-with-template:
name: Sync meta files
fixcs:
name: Run php-cs-fixer
needs: sync-with-template
if: (github.event_name == 'push' || github.event_name == 'schedule') && !startsWith(github.ref, 'refs/tags') && github.repository_owner == 'zenstruck'
runs-on: ubuntu-latest
steps:
- uses: zenstruck/.github@sync-with-template
- uses: zenstruck/.github@php-cs-fixer
with:
php: 8.1
key: ${{ secrets.GPG_PRIVATE_KEY }}
token: ${{ secrets.COMPOSER_TOKEN }}

0 comments on commit f7eb93f

Please sign in to comment.