Skip to content

Update CI PHP versions to 8.1 - 8.4 #81

Update CI PHP versions to 8.1 - 8.4

Update CI PHP versions to 8.1 - 8.4 #81

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2', '8.3', '8.4']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
tools: composer, php-cs-fixer, phpunit
- 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.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist
- name: Run tests
if: ${{matrix.php}} == '8.1'
run: vendor/bin/phpunit --configuration phpunit-8.1.xml
if: ${{matrix.php}} != '8.1'

Check failure on line 46 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 46, Col: 7): 'if' is already defined .github/workflows/ci.yml (Line: 47, Col: 7): 'run' is already defined
run: vendor/bin/phpunit