Skip to content

Add PHPUnit CI config #1

Add PHPUnit CI config

Add PHPUnit CI config #1

Workflow file for this run

name: PHPUnit
on:
pull_request:
push:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php:
- '7.4'
- '8.2'
symfony:
- '5.4.*'
- '6.4.*'
exclude:
- php: '7.4'
symfony: '6.4.*' # requires PHP ^8.1.0
runs-on: ${{ matrix.os }}
env:
SYMFONY: ${{ matrix.symfony }}
steps:
- uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: date.timezone='UTC'
tools: composer:v2
- name: Require symfony
run: composer --no-update require symfony/symfony:"${SYMFONY}"
- name: Install dependencies
run: |
composer update
vendor/bin/simple-phpunit install
- name: Test
run: |
composer validate --strict --no-check-lock
vendor/bin/simple-phpunit --coverage-text --verbose