Skip to content

Commit

Permalink
Allow failure on php 8.1 and add back drupal 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
rosiel committed Jul 20, 2022
1 parent 4d56516 commit 85cf082
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build-2.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,21 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ["7.4", "8.0", "8.1"]
php-versions: ["7.4", "8.0"]
test-suite: ["kernel", "functional", "functional-javascript"]
drupal-version: ["9.4.x", "9.5.x-dev"]
mysql: ["8.0"]
allowed_failure: [false]
include:
- php-versions: "8.1"
drupal-version: "9.4.x"
allowed_failure: true
- php-versions: "8.1"
drupal-version: "9.5.x-dev"
allowed_failure: true
- php-versions: "8.1"
drupal-version: "10.0.x-dev"
allowed_failure: true

name: PHP ${{ matrix.php-versions }} | drupal ${{ matrix.drupal-version }} | mysql ${{ matrix.mysql }} | test-suite ${{ matrix.test-suite }}

Expand Down

0 comments on commit 85cf082

Please sign in to comment.