Skip to content

Merge pull request #32 from Chris53897/feature/allow-symfony-7 #100

Merge pull request #32 from Chris53897/feature/allow-symfony-7

Merge pull request #32 from Chris53897/feature/allow-symfony-7 #100

Workflow file for this run

name: tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [5.6, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3]
stability: [prefer-lowest, prefer-stable]
name: P${{ matrix.php }}-${{ matrix.stability }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, zip, json
coverage: none
- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose --configuration phpunit.xml.dist