Skip to content

Allow Symfony 7

Allow Symfony 7 #360

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches:
- main
tags:
- '*'
schedule:
- cron: 0 13 * * MON,THU
jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
if: github.event_name != 'schedule'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: pcov
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: composer install --no-interaction --no-progress
- name: Generate the coverage report
run: php -d pcov.enabled=1 vendor/bin/phpunit --testsuite=coverage --coverage-clover=clover.xml --colors=always
- name: Upload the coverage report
uses: codecov/codecov-action@v2
with:
files: ./clover.xml
fail_ci_if_error: true
coding-style:
name: Coding Style
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4 # Keep running this with PHP 7, otherwise there will be PHP 8 CS fixes
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: |
composer install --no-interaction --no-progress
composer bin ecs install --no-interaction --no-progress
- name: Check the coding style
run: tools/ecs/vendor/bin/ecs check src tests --no-progress-bar --ansi
tests:

Check failure on line 64 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 64
name: 'PHP ${{ matrix.php }}
runs-on: ubuntu-latest
if: github.event_name != 'push'
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1, 8.2, 8.3]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v1
- name: Install the dependencies
run: composer update --no-interaction --no-progress --no-suggest
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always