Drop support for php 5 #131
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | ||
on: | ||
push: | ||
branches: | ||
- v1.6 | ||
pull_request: | ||
branches: | ||
- v1.6 | ||
jobs: | ||
tests: | ||
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-versions: | ||
- '7.1' | ||
- '7.2' | ||
- '7.3' | ||
- '7.4' | ||
- '8.0' | ||
- '8.1' | ||
- '8.2' | ||
- '8.3' | ||
- '8.4' | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up PHP ${{ matrix.php-versions }} | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: mbstring | ||
coverage: pcov | ||
- name: Setup Problem Matchers for PHP | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
- name: Setup Problem Matchers for PHPUnit | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
- name: Validate composer.json and composer.lock | ||
run: composer validate | ||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
- name: Install dependencies for PHP < 8.0 | ||
if: matrix.php-versions != '8.0' && matrix.php-versions != '8.1' && matrix.php-versions != '8.2 || matrix.php-versions != '8.3 || matrix.php-versions != '8.4' | ||
Check failure on line 62 in .github/workflows/runTests.yml GitHub Actions / TestsInvalid workflow file
|
||
run: composer install --prefer-dist --no-progress | ||
- name: Install PHPUnit 8 for PHP 8 | ||
if: matrix.php-versions == '8.0' || matrix.php-versions == '8.1' || matrix.php-versions == '8.2 || matrix.php-versions == '8.3 || matrix.php-versions == '8.4' | ||
run: | | ||
composer require --dev phpunit/phpunit:8.5.17 --ignore-platform-reqs | ||
git apply --reject --whitespace=fix src/test/patches/php8-return-types.diff | ||
- name: Run test suite | ||
run: composer run-script test -- --coverage-text |