Skip to content

Drop support for php 5 #131

Drop support for php 5

Drop support for php 5 #131

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/runTests.yml (Line: 62, Col: 13): Unexpected symbol: '8.3'. Located at position 120 within expression: 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' .github/workflows/runTests.yml (Line: 66, Col: 13): Unexpected symbol: '8.3'. Located at position 120 within expression: 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 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