Skip to content

Commit

Permalink
Merge pull request #634 from WordPress/feature/ghactions-dont-allow-f…
Browse files Browse the repository at this point in the history
…ailure-on-8.1
  • Loading branch information
schlessera authored Nov 17, 2021
2 parents 6ceca84 + 8566dd0 commit e78afd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,9 @@ jobs:
strategy:
matrix:
# Lint against the high/low versions of each PHP major.
php: ['5.6', '7.0', '7.4', '8.0']
php: ['5.6', '7.0', '7.4', '8.0', '8.1']
experimental: [false]

include:
- php: '8.1'
experimental: true

name: "Lint: PHP ${{ matrix.php }}"
continue-on-error: ${{ matrix.experimental }}

Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# - coverage: Whether to run the tests with code coverage.
# - experimental: Whether the build is "allowed to fail".
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.1']
coverage: [false]
experimental: [false]

Expand All @@ -37,11 +37,6 @@ jobs:
coverage: true
experimental: false

# Test against PHP Nightly.
- php: '8.1'
coverage: false
experimental: true

name: "Test: PHP ${{ matrix.php }}"

continue-on-error: ${{ matrix.experimental }}
Expand Down

0 comments on commit e78afd7

Please sign in to comment.