Skip to content

Commit

Permalink
add PHP 8.2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nojimage committed Jun 5, 2023
1 parent fdd80d9 commit 42a7686
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1']
php-version: ['7.4', '8.0', '8.1', '8.2']
coverage: ['no']
test-tld: ['no']
include:
- php-version: '8.1'
- php-version: '8.2'
coverage: 'coverage'
test-tld: 'no'
- php-version: '8.1'
- php-version: '8.2'
coverage: 'no'
test-tld: 'test-tld'

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
run: composer install --prefer-dist

- name: Setup problem matchers for PHPUnit
if: matrix.php-version == '8.1'
if: matrix.php-version == '8.1' || matrix.php-version == '8.2'
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

- name: Run PHPUnit
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
extensions: mbstring, intl, apcu
coverage: none
tools: cs2pr, phpcs
Expand Down

0 comments on commit 42a7686

Please sign in to comment.