Allow Symfony 7 #356
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
release: | |
types: [published] | |
push: | |
branches: [main] | |
name: CI | |
jobs: | |
coding-guidelines: | |
name: Coding Guidelines | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Update dependencies with composer | |
run: composer update --no-interaction --no-ansi --no-progress | |
- name: Run friendsofphp/php-cs-fixer | |
run: ./vendor/bin/php-cs-fixer fix --dry-run --show-progress=dots --using-cache=no --verbose | |
tests: | |
name: Tests - PHP${{ matrix.php-version }} [${{ startsWith(matrix.composer-flags, '--') && 'Low' || 'High' }}] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1'] | |
composer-flags: ["--prefer-lowest --prefer-stable", ""] | |
fail-fast: false | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name: Install PHP${{ matrix.php-version }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: apcu | |
coverage: xdebug | |
ini-values: apc.enabled=1,apc.enable_cli=1 | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Update dependencies with composer | |
run: | | |
composer update --no-interaction --no-ansi --no-progress ${{ matrix.composer-flags }} | |
- name: Run tests | |
env: | |
REDIS_HOST: localhost | |
REDIS_PORT: ${{ job.services.redis.ports[6379] }} | |
run: XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover=coverage.clover | |
- name: Upload coverage report to codecov | |
if: matrix.php-version == '7.3' | |
run: | | |
wget https://scrutinizer-ci.com/ocular.phar | |
php ocular.phar code-coverage:upload --format=php-clover coverage.clover | |
bash <(curl -s https://codecov.io/bash) |