Skip to content

Commit

Permalink
Update ci to php 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
keithbrink committed Feb 13, 2024
1 parent 4eefb3a commit ed217c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: "8.1"
php_version: "8.2"
- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
php_version: "8.1"
php_version: "8.2"
php_extensions: pcov
bootstrap: vendor/autoload.php
configuration: phpunit.xml
memory_limit: 1G
- name: Archive code coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: tests/resources/clover.xml
Expand Down

0 comments on commit ed217c6

Please sign in to comment.