Skip to content

Allow Symfony 7 support #22

Allow Symfony 7 support

Allow Symfony 7 support #22

Workflow file for this run

name: CI
on:
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
strategy: [ 'highest' ]
sf_version: ['']
include:
- php: 7.4
strategy: 'lowest'
- php: 7.3
sf_version: '4.*'
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: flex
- name: Download dependencies
uses: ramsey/composer-install@v1
env:
SYMFONY_REQUIRE: ${{ matrix.sf_version }}
with:
dependency-versions: ${{ matrix.strategy }}
composer-options: --no-interaction --prefer-dist --optimize-autoloader
- name: Install PHPUnit
run: ./vendor/bin/simple-phpunit install
- name: Run tests
run: ./vendor/bin/simple-phpunit