Skip to content

Commit

Permalink
Fix PHP/Drupal versions
Browse files Browse the repository at this point in the history
  • Loading branch information
justafish committed Aug 8, 2024
1 parent b7c44b2 commit ec6e32d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test-production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ jobs:
strategy:
matrix:
php-version: [8.1, 8.2, 8.3]

include:
- php-version: 8.1
drupal-version: ":^10"
- php-version: 8.2
drupal-version: ":^10"
steps:
- uses: actions/checkout@v4

Expand All @@ -37,7 +41,7 @@ jobs:
- name: Install Drupal
run: |
cd ../
composer create-project drupal/recommended-project drupal --ignore-platform-req=ext-gd
composer create-project drupal/recommended-project${{ matrix.drupal-version }} drupal --ignore-platform-reqs
cd drupal
cp ${GITHUB_WORKSPACE}/tests/fixtures.drainpipe-test-build/Taskfile.yml .
composer config extra.drupal-scaffold.gitignore true
Expand Down

0 comments on commit ec6e32d

Please sign in to comment.