Skip to content

Commit

Permalink
Adding test coverage for PHP 8.3
Browse files Browse the repository at this point in the history
Updating Github Actions to latest versions.
Adding Codecov API token.
  • Loading branch information
Brent Scheffler committed May 4, 2024
1 parent 551b020 commit 97ed4e0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [8.0, 8.1, 8.2]
php-version: [8.0, 8.1, 8.2, 8.3]

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -38,7 +38,9 @@ jobs:
- name: Run test suite
run: make coverage

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./build/logs/clover.xml
#flags: unittests # optional
Expand Down

0 comments on commit 97ed4e0

Please sign in to comment.