Skip to content

Commit

Permalink
Added CI support for PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbyoung committed Nov 28, 2023
1 parent 810b365 commit 9c31309
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
include:
- php: '8.2'
stability: prefer-stable
- php: '8.3'
stability: prefer-stable
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Check Out Code
Expand All @@ -33,7 +35,7 @@ jobs:
- name: Run Tests
run: composer phpunit
- name: Run Linter
run: composer phpcs-test
run: PHP_CS_FIXER_IGNORE_ENV=1 composer phpcs-test
- name: Run Psalm Static Analysis
run: composer psalm -- --shepherd
- name: Upload Coverage Results To Coveralls
Expand Down

0 comments on commit 9c31309

Please sign in to comment.