Skip to content

Commit

Permalink
Stop using docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
MKodde committed Sep 16, 2024
1 parent c361fbf commit 16ac505
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
- name: Init environment
run: |
cd ci/docker
docker-compose up -d
docker compose up -d
- name: Install dependencies
run: |
cd ci/docker && docker-compose exec -T stepup-middleware bash -lc '
cd ci/docker && docker compose exec -T stepup-middleware bash -lc '
composer install
'
- name: Run test scripts
run: cd ci/docker && docker-compose exec -T stepup-middleware bash -lc ' composer test '
run: cd ci/docker && docker compose exec -T stepup-middleware bash -lc ' composer test '
- name: Output log files on failure
if: failure()
run: |
Expand Down

0 comments on commit 16ac505

Please sign in to comment.