Skip to content

Commit

Permalink
Test against php 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-doehring committed Oct 16, 2022
1 parent bc743e9 commit b9388bf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- '7.4'
- '8.0'
- '8.1'
- '8.2'
include:
- operating-system: 'windows-latest'
php-version: '7.1'
Expand Down Expand Up @@ -59,9 +60,9 @@ jobs:
run: composer update --no-interaction --no-progress --optimize-autoloader

- name: Run tests
if: ${{ '8.1' != matrix.php-version }}
if: ${{ '8.1' != matrix.php-version && '8.2' != matrix.php-version }}
run: ./vendor/bin/simple-phpunit

- name: Run tests for php 8.1
if: ${{ '8.1' == matrix.php-version }}
if: ${{ '8.1' == matrix.php-version || '8.2' == matrix.php-version }}
run: SYMFONY_PHPUNIT_VERSION=9.5 ./vendor/bin/simple-phpunit

0 comments on commit b9388bf

Please sign in to comment.