We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2ac3a commit 1892dbfCopy full SHA for 1892dbf
.github/workflows/nightly.yml
@@ -437,6 +437,18 @@ jobs:
437
uses: ./.github/actions/notify-slack
438
with:
439
token: ${{ secrets.ACTION_MONITORING_SLACK }}
440
+ - name: Test Drupal
441
+ if: always()
442
+ run: |
443
+ git clone https://git.drupalcode.org/project/drupal.git drupal --branch=11.x --depth=1
444
+ cd drupal
445
+ git rev-parse HEAD
446
+ php /usr/bin/composer install --no-progress --ignore-platform-reqs
447
+ export SIMPLETEST_DB='sqlite://./tests.db'
448
+ vendor/bin/phpunit -c core/phpunit.xml.dist --testsuite=kernel || EXIT_CODE=$?
449
+ if [ $EXIT_CODE -gt 128 ]; then
450
+ exit 1
451
+ fi
452
OPCACHE_VARIATION:
453
needs: GENERATE_MATRIX
454
if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
0 commit comments