Skip to content

Commit

Permalink
fix: use the correct docker compose command in actions (#869)
Browse files Browse the repository at this point in the history
update the integration-test.yaml
docker-compose command updated to docker compose
  • Loading branch information
nitisht authored Aug 3, 2024
1 parent 9aaa2cc commit 356c03c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Start compose
run: docker-compose -f docker-compose-test.yaml up --build --exit-code-from quest
run: docker compose -f docker-compose-test.yaml up --build --exit-code-from quest
- name: Stop compose
if: always()
run: docker-compose -f docker-compose-test.yaml down
run: docker compose -f docker-compose-test.yaml down

docker-compose-distributed-test:
name: Quest Smoke and Load Tests for Distributed deployments
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Start compose
run: docker-compose -f docker-compose-distributed-test.yaml up --build --exit-code-from quest
run: docker compose -f docker-compose-distributed-test.yaml up --build --exit-code-from quest
- name: Stop compose
if: always()
run: docker-compose -f docker-compose-distributed-test.yaml down
run: docker compose -f docker-compose-distributed-test.yaml down

0 comments on commit 356c03c

Please sign in to comment.