@@ -10,12 +10,15 @@ jobs:
1010 runs-on : ubuntu-latest
1111 strategy :
1212 matrix :
13- drupal_version : ['10.4', '11.0', '11.1']
13+ drupal_version : ['10.4', '10.5', ' 11.0', '11.1']
1414 module : ['entity_to_text']
1515 include :
1616 - drupal_version : ' 11.2'
1717 module : ' entity_to_text'
1818 experimental : true
19+ - drupal_version : ' 11.3'
20+ module : ' entity_to_text'
21+ experimental : true
1922
2023 steps :
2124 - uses : actions/checkout@v4
@@ -32,18 +35,22 @@ jobs:
3235 run : docker compose -f docker-compose.yml exec -T -u www-data drupal drush site-install standard --db-url="mysql://drupal:drupal@db/drupal" -y
3336 - name : Run unit tests
3437 run : docker compose -f docker-compose.yml run -u www-data drupal phpunit --no-coverage --group=${{ matrix.module }} --exclude-group=${{ matrix.module }}_functional --configuration=/var/www/html/phpunit.xml
38+ continue-on-error : ${{ matrix.experimental }}
3539
3640 tests-functional :
3741 name : Functional Tests
3842 runs-on : ubuntu-latest
3943 strategy :
4044 matrix :
41- drupal_version : ['10.4', '11.0', '11.1']
45+ drupal_version : ['10.4', '10.5', ' 11.0', '11.1']
4246 module : ['entity_to_text']
4347 include :
4448 - drupal_version : ' 11.2'
4549 module : ' entity_to_text'
4650 experimental : true
51+ - drupal_version : ' 11.3'
52+ module : ' entity_to_text'
53+ experimental : true
4754
4855 steps :
4956 - uses : actions/checkout@v4
@@ -60,13 +67,14 @@ jobs:
6067 run : docker compose -f docker-compose.yml exec -T -u www-data drupal drush site-install standard --db-url="mysql://drupal:drupal@db/drupal" -y
6168 - name : Run tests
6269 run : docker compose -f docker-compose.yml exec -T -u www-data drupal phpunit --no-coverage --group=${{ matrix.module }}_functional --configuration=/var/www/html/phpunit.xml
70+ continue-on-error : ${{ matrix.experimental }}
6371
6472 upgrade-status :
6573 name : Upgrade Status
6674 runs-on : ubuntu-latest
6775 strategy :
6876 matrix :
69- drupal_version : ['10.4 ']
77+ drupal_version : ['10.5 ']
7078 module : ['entity_to_text']
7179
7280 steps :
0 commit comments