Skip to content

Commit

Permalink
Merge pull request #47 from boherm/add-php-versions-for-ci
Browse files Browse the repository at this point in the history
Add 8.1 & 8.2 PHP versions for CI
  • Loading branch information
matks committed Nov 7, 2023
2 parents 8ebd563 + a8e033b commit 2f66ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
run: ./vendor/bin/phpunit --coverage-clover build/clover.xml

- name: PHP CS Fixer
run: ./vendor/bin/php-cs-fixer fix --dry-run
run: PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --dry-run

- name: Upload coverage results to Coveralls
if: matrix.php-versions == '7.4'
Expand Down

0 comments on commit 2f66ed4

Please sign in to comment.