Skip to content

feat: PHP 8.5 and Symfony 8 support (#333) #320

feat: PHP 8.5 and Symfony 8 support (#333)

feat: PHP 8.5 and Symfony 8 support (#333) #320

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 1,16 * *'
jobs:
tests:
name: PHP ${{ matrix.php }}, SF ${{ matrix.symfony }} - ${{ matrix.deps }}
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.2, 8.3, 8.4, 8.5 ]
deps: [ highest ]
symfony: [ 6.4.*, 7.4.*, 8.0.* ]
include:
- php: 8.2
deps: lowest
symfony: '*'
exclude:
- php: 8.2
symfony: 8.0.*
- php: 8.3
symfony: 8.0.*
- php: 8.5
symfony: 6.4.* # laminas-diagnostics doesn't support PHP 8.5 with Symfony 6.4
steps:
- uses: zenstruck/.github/actions/php-test-symfony@main
with:
php: ${{ matrix.php }}
symfony: ${{ matrix.symfony }}
deps: ${{ matrix.deps }}
code-coverage:
uses: zenstruck/.github/.github/workflows/php-coverage-codecov.yml@main
composer-validate:
uses: zenstruck/.github/.github/workflows/php-composer-validate.yml@main
sca:
uses: zenstruck/.github/.github/workflows/php-stan.yml@main
cs:
uses: zenstruck/.github/.github/workflows/php-cs-fixer.yml@main
with:
php: 8.1