update citation select to 2.x to remove bibcite dependency #350
Workflow file for this run
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: {} | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: [ 8.1, 8.2 ] | |
name: PHP ${{ matrix.php-versions }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer:v2 | |
# From https://github.com/shivammathur/setup-php#cache-composer-dependencies | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install | |
- name: Test site installation | |
run: composer exec -- drush site:install --existing-config --db-url=sqlite:test_db | |
- name: Inspect configuration | |
# Just warnings, for now... | |
continue-on-error: true | |
run: | | |
composer exec -- drush en config_inspector | |
composer exec -- drush config:inspect --only-error --detail |