Skip to content

fix(ci): pin PHPUnit 9.6 and PHP 8.2 so the gates test what the packa… #210

fix(ci): pin PHPUnit 9.6 and PHP 8.2 so the gates test what the packa…

fix(ci): pin PHPUnit 9.6 and PHP 8.2 so the gates test what the packa… #210

Workflow file for this run

name: CI
on: [ push ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
configuration: phpunit.xml
# Pin to the PHPUnit major the package targets (composer dev deps
# resolve 9.6): the action's default phar is PHPUnit 11+, which
# ignores @dataProvider annotations and silently skips those tests.
version: "9.6"
php_version: "8.2"