Skip to content

Update phpunit/phpunit requirement from ^7.0 || ^8.0 || ^9.0 to ^7.0 … #36

Update phpunit/phpunit requirement from ^7.0 || ^8.0 || ^9.0 to ^7.0 …

Update phpunit/phpunit requirement from ^7.0 || ^8.0 || ^9.0 to ^7.0 … #36

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
ci:
name: CI checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
steps:
- uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Run composer install
run: composer install
env:
COMPOSER_ROOT_VERSION: dev-master
- run: vendor/bin/parallel-lint src
- run: composer cs-check
- run: composer test