Skip to content

Commit

Permalink
Allow failures for PHP > 8.0 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
htdat committed Apr 23, 2021
1 parent 969b4e6 commit b45c8f5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/php-tests.yml
Expand Up @@ -25,10 +25,16 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ]
php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4' ]
wp: [ '5.6', '5.7' ]
allowed_failure: [ false ]
include:
- php: '8.0'
wp: '5.6'
allowed_failure: true
- php: '8.0'
wp: '5.7'
allowed_failure: true
# PHP nightly.
- php: '8.1'
wp: '5.7'
Expand Down

0 comments on commit b45c8f5

Please sign in to comment.