Skip to content

Commit 7226b4b

Browse files
committed
Fix Docker Compose command in Github workflow
1 parent 0e27587 commit 7226b4b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
test:
1313
name: Build and test LocalGov Drupal
1414
runs-on: ubuntu-latest
15-
16-
15+
16+
1717
strategy:
1818
fail-fast: false
1919
matrix:
@@ -25,7 +25,7 @@ jobs:
2525
- name: setup PHP
2626
uses: shivammathur/setup-php@v2
2727
with:
28-
php-version: '8.2'
28+
php-version: '8.3'
2929

3030
- uses: actions/checkout@v2
3131

@@ -36,7 +36,7 @@ jobs:
3636
run: jq --raw-output '.packages[] | select(.name | startswith("localgovdrupal/")) | ."require-dev" | values | to_entries[] | @sh "\(.key):\(.value)"' ./html/composer.lock | sort | uniq | xargs composer --working-dir=./html require --dev --no-interaction
3737

3838
- name: Start Docker environment
39-
run: docker-compose up -d
39+
run: docker compose up -d
4040

4141
- name: Run tests
4242
run: ./run-tests.sh

0 commit comments

Comments
 (0)