Add support for Symfony 7 #92
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
code_style: | |
name: Test code style | |
runs-on: ubuntu-latest | |
env: | |
PHP_CS_FIXER_IGNORE_ENV: 1 | |
strategy: | |
matrix: | |
phpVersion: ['8.0', '8.1', '8.2'] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.phpVersion }} | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install | |
- name: Test code style | |
run: composer fixer -- --dry-run | |
static_analysis: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
phpVersion: ['8.0', '8.1', '8.2'] | |
symfonyVersion: [^6.0] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.phpVersion }} | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install | |
- name: Install Symfony | |
run: composer require -W symfony/framework-bundle:${{ matrix.symfonyVersion }} symfony/cache:${{ matrix.symfonyVersion }} symfony/console:${{ matrix.symfonyVersion }} | |
- name: Run static analysis | |
run: composer phpstan | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
symfonyVersion: [^6.0] | |
phpVersion: ['8.0', '8.1', '8.2'] | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.phpVersion }} | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install | |
- name: Install Symfony | |
run: composer require -W symfony/framework-bundle:${{ matrix.symfonyVersion }} symfony/cache:${{ matrix.symfonyVersion }} symfony/console:${{ matrix.symfonyVersion }} | |
- name: Run tests | |
run: composer phpunit | |
coverage: | |
name: Report Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install | |
- name: Generate Coverage | |
run: composer phpunit -- --coverage-clover ./build/logs/clover.xml | |
- name: Download Coverage Client | |
run: wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.2.0/php-coveralls.phar | |
- name: Publish Coverage | |
run: php php-coveralls.phar --verbose | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }} |