Skip to content

Make PHP 8.4 test experimental #93

Make PHP 8.4 test experimental

Make PHP 8.4 test experimental #93

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
continue-on-error: ${{ matrix.experimental }}

Check failure on line 7 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 7, Col: 7): Unexpected value 'continue-on-error'
matrix:
operating-system: [ubuntu-latest]
php-versions: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
experimental: [false]
include:
- version: "8.4"
experimental: true
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: gmp
coverage: xdebug
#coverage: pcov
- name: Set composer cache
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
#key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Run linter
run: make lint
- name: Run unit tests
run: make unit
- name: Run static analysis
run: make static
- name: Upload coverage
uses: codecov/codecov-action@v1