Skip to content

Commit

Permalink
fix matrix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnlk committed Dec 2, 2024
1 parent 68afcbc commit 77def14
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
build-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions:
- 5.4
Expand All @@ -14,26 +15,28 @@ jobs:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
- 8.4
- nightly


steps:
- uses: actions/checkout@v3

- uses: php-actions/composer@v6

- name: PHPUnit Tests
uses: php-actions/phpunit@master
uses: php-actions/phpunit@v4
env:
XDEBUG_MODE: coverage
with:
php_extensions: "xdebug"
php_extensions: xdebug
coverage_html: "coverage/html/"
version: 9.5
bootstrap: tests/bootstrap.php
configuration: phpunit.xml
php_version: ${{ matrix.php-versions }}

- name: Archive code coverage results
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 77def14

Please sign in to comment.