Skip to content

Allow version 8.15.0 of slevomat/coding-standard #39

Allow version 8.15.0 of slevomat/coding-standard

Allow version 8.15.0 of slevomat/coding-standard #39

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '7.3', '7.4', '8.0', '8.1', '8.2' ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Validate composer.json
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: php vendor/bin/phpunit