Allow Symfony 7.0 #98
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
static_analysis: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: '8.2' | |
- name: Install dependencies | |
run: composer update --ansi --no-progress --prefer-dist --no-interaction | |
- run: vendor/bin/phpstan analyze | |
tests: | |
name: Tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] | |
composer_flags: [ '' ] | |
minimum_stability: [ '' ] | |
symfony_deprecations_helper: [ '' ] | |
include: | |
- php: '7.2' | |
composer_flags: '--prefer-lowest --prefer-stable' | |
symfony_deprecations_helper: weak | |
- php: '8.0' | |
minimum_stability: dev | |
- php: '7.4' | |
minimum_stability: dev | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: "xdebug" | |
php-version: "${{ matrix.php }}" | |
tools: composer | |
- name: Configure for minimum stability | |
if: "${{ matrix.minimum_stability == 'dev' }}" | |
run: | | |
composer config minimum-stability dev | |
- name: Install dependencies | |
run: | | |
composer update ${{ matrix.composer_flags }} | |
- name: Run tests | |
run: | | |
export SYMFONY_DEPRECATIONS_HELPER="${{ matrix.symfony_deprecations_helper }}" | |
vendor/bin/phpunit -v --coverage-clover=coverage.xml | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: coverage.xml |