Skip to content

Allow Symfony 7 (#33) #8

Allow Symfony 7 (#33)

Allow Symfony 7 (#33) #8

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
phpunit:
name: "PHPUnit"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "8.0"
- "8.1"
dependencies:
- "highest"
include:
- php-version: "8.0"
dependencies: "lowest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
with:
fetch-depth: 2
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
coverage: "pcov"
ini-values: "zend.assertions=1"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
with:
dependency-versions: "${{ matrix.dependencies }}"
- name: "Run PHPUnit"
run: "vendor/bin/phpunit"