Skip to content

Commit

Permalink
Enable CI using PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
brzuchal committed Nov 27, 2023
1 parent 971819d commit cbb03e6
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
actions: read
contents: read
checks: write
runs-on: [ubuntu-latest]
runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -45,8 +45,8 @@ jobs:
continue-on-error: ${{ matrix.dependency-versions == 'lowest' }}
strategy:
matrix:
php: [ "8.1", "8.2" ]
dependency-versions: [ lowest, locked, highest ]
php: [ "8.1", "8.2", "8.3" ]
dependency-versions: [ lowest, highest ]
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
Expand All @@ -59,11 +59,5 @@ jobs:

- run: mkdir -p report/phpunit
if: success() || failure()
- run: composer exec -- phpunit --testsuite tests --colors=always #--log-junit=report/phpunit/junit-${{ matrix.php }}-${{ matrix.dependency-versions }}.xml
- run: composer exec -- phpunit --testsuite tests --colors=always
if: success() || failure()
# - name: Publish Test Results
# uses: EnricoMi/publish-unit-test-result-action/composite@v2
# if: success() || failure()
# with:
# check_name: "PHPUnit (${{ matrix.php }} with ${{ matrix.dependency-versions }} dependencies)"
# junit_files: "report/phpunit/**/*.xml"

0 comments on commit cbb03e6

Please sign in to comment.