Skip to content

Fix: Switch to Ubuntu 22.04 for CI workflows #8

Fix: Switch to Ubuntu 22.04 for CI workflows

Fix: Switch to Ubuntu 22.04 for CI workflows #8

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
testsuite:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php-version: ['7.2', '7.4', '8.0']
composer-opts: ['']
include:
- php-version: '7.1'
composer-opts: '--prefer-lowest'
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: Composer install
run: |
if [[ ${{ matrix.php-version }} == '8.0' ]]; then
composer remove --dev squizlabs/php_codesniffer phpstan/phpstan-shim phpunit/phpunit
composer require --dev phpunit/phpunit:^8.5
else
composer update ${{ matrix.composer-opts }}
fi
- name: Run PHPUnit
run: |
if [[ ${{ matrix.php-version }} == '7.4' ]]; then
vendor/bin/phpunit -v --debug --coverage-clover=coverage.clover
else
vendor/bin/phpunit --no-coverage
fi
- name: Code Coverage Report
if: matrix.php-version == '7.4'
run: |
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;