Run unit tests on PHP 8.0, 8.1, and 8.2
This commit is contained in:
parent
c90823afbe
commit
fcd9e31af9
1 changed files with 4 additions and 1 deletions
5
.github/workflows/unittests.yml
vendored
5
.github/workflows/unittests.yml
vendored
|
@ -9,6 +9,9 @@ on:
|
|||
jobs:
|
||||
build-test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
php_version: [8.0, 8.1, 8.2]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -18,5 +21,5 @@ jobs:
|
|||
- uses: php-actions/phpunit@v3
|
||||
with:
|
||||
bootstrap: src/Vendor/autoload.php
|
||||
php_version: "8.0"
|
||||
php_version: ${{ matrix.php_version }}
|
||||
args: "tests"
|
||||
|
|
Loading…
Reference in a new issue