Skip to content

Commit

Permalink
Use docker compose instead of docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 committed Aug 29, 2023
1 parent dc71376 commit d0b7254
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
- name: Start stack
run: |
docker-compose -f docker-compose.test.yml up --wait
docker-compose exec -T php composer install
docker compose -f docker-compose.test.yml up --wait
docker compose exec -T php composer install
- name: Setup database
run: |
make db env=test
- name: Run lint
run: |
docker-compose exec -T php bin/console cache:warmup --env=dev
docker compose exec -T php bin/console cache:warmup --env=dev
make cs env=test ci=true
- name: Run tests
Expand Down

0 comments on commit d0b7254

Please sign in to comment.