Update CI #8
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: Functional Tests | |
on: | |
push: | |
paths-ignore: ["**.md"] | |
pull_request: | |
paths-ignore: ["**.md"] | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: Functional Tests | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
php-version: | |
- "7.2" | |
- "8.3" | |
os: [ubuntu-latest] | |
experimental: [false] | |
include: | |
- php-version: "7.2" | |
os: windows-latest | |
experimental: false | |
- php-version: "8.3" | |
os: windows-latest | |
experimental: false | |
- php-version: "8.4" | |
os: ubuntu-latest | |
experimental: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: xdebug | |
- uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: highest | |
- name: Run tests | |
if: ${{ !matrix.experimental }} | |
run: vendor/bin/phpunit --group functional | |
# Show deprecations on PHP 8.4 | |
- name: Run tests (experimental) | |
if: ${{ matrix.experimental }} | |
run: vendor/bin/phpunit --group functional --display-deprecations |