Updated Drush to 13@beta and PHP version. (#641) #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
env: | |
COMPOSER_MEMORY_LIMIT: -1 | |
SIMPLETEST_DB: sqlite://tmp/site.sqlite | |
SIMPLETEST_BASE_URL: "http://127.0.0.1:8080" | |
jobs: | |
build: | |
runs-on: 'ubuntu-20.04' | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: ['8.3'] | |
drupal-release: ['alpha'] | |
composer-channel: ['stable'] | |
include: | |
- php-versions: '8.3' | |
drupal-release: dev | |
composer-channel: stable | |
- php-versions: '8.3' | |
drupal-release: alpha | |
composer-channel: snapshot | |
steps: | |
- name: Dump matrix context | |
env: | |
MATRIX_CONTEXT: ${{ toJSON(matrix) }} | |
run: echo "$MATRIX_CONTEXT" | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: gd, pdo_sqlite | |
- name: Update composer | |
run: composer --verbose self-update --${{ matrix.composer-channel }} | |
- name: Dump composer version | |
run: composer --version | |
- name: Validate composer.json | |
run: composer --verbose validate | |
- name: Install dependencies | |
run: composer --verbose install | |
- if: matrix.drupal-release == 'dev' | |
run: composer --verbose require --no-update drupal/core-recommended:10.0.x-dev && composer --verbose require --no-update --dev drupal/core-dev:10.0.x-dev | |
- if: matrix.drupal-release == 'dev' | |
run: composer --verbose update | |
- run: ./vendor/bin/drush site-install --verbose --yes --db-url=sqlite://tmp/site.sqlite | |
- run: ./vendor/bin/drush runserver $SIMPLETEST_BASE_URL & | |
- run: until curl -s $SIMPLETEST_BASE_URL; do true; done > /dev/null | |
- name: Run a single unit test to verify the testing setup. | |
run: ./vendor/bin/phpunit -c ./web/core ./web/core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php | |
- run: ./vendor/bin/drush |