We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9385a5 commit 24c5e4eCopy full SHA for 24c5e4e
2 files changed
.github/workflows/contributors.yml
.github/workflows/theme-readiness.yml
@@ -15,16 +15,21 @@ concurrency:
15
16
jobs:
17
theme-readiness:
18
- name: Theme Readiness (Drupal ${{ matrix.drupal-version }} / PHP ${{ matrix.php-version }})
+ name: Theme Readiness (${{ matrix.label }} / PHP ${{ matrix.php-version }})
19
runs-on: ubuntu-latest
20
+ continue-on-error: ${{ matrix.experimental }}
21
strategy:
22
fail-fast: false
23
matrix:
24
include:
- - drupal-version: '11.3.*'
25
+ - label: Drupal 11.3
26
+ drupal-version: '11.3.*'
27
php-version: '8.4'
- - drupal-version: 'dev-main'
28
+ experimental: false
29
+ - label: Drupal Dev Branch
30
+ drupal-version: 'dev-main'
31
php-version: '8.5'
32
+ experimental: true
33
steps:
34
- name: Checkout
35
uses: actions/checkout@v5
0 commit comments