Skip to content

GH Actions: various updates / PHP 8.1 should no longer be allowed to fail #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 7, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
GH Actions: PHP 8.1 is no longer allowed to fail
PHP 8.1 was released the other week, so builds against PHP 8.1 should no longer be allowed to fail.
  • Loading branch information
jrfnl committed Dec 4, 2021
commit 79a99f5f41da23ef34f349b3efcc4a25a7b9c9af
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:

strategy:
matrix:
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
experimental: [false]

include:
- php: '8.1'
- php: '8.2'
experimental: true

name: "Test on PHP ${{ matrix.php }}"
Expand Down