Skip to content

Commit d5b45cf

Browse files
committed
Allow PHP 8.0 CI to fail on QA branch as the requirements of this branch are before PHP 8.x
Signed-off-by: William Desportes <[email protected]>
1 parent f9c200f commit d5b45cf

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
continue-on-error: ${{ matrix.experimental }}
1616
strategy:
1717
matrix:
18-
php-version: ["5.3", "5.4", "5.5", "5.6", "7.1", "7.2", "7.3", "7.4", "8.0"]
18+
php-version: ["5.3", "5.4", "5.5", "5.6", "7.1", "7.2", "7.3", "7.4"]
1919
os: [ubuntu-latest]
2020
experimental: [false]
2121
composer-options: ['']
2222
include:
23+
# Non official support but still try to run tests against the code
24+
- { php-version: '8.0', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-reqs' }
2325
- { php-version: '8.1', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-reqs' }
2426
steps:
2527
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)