Skip to content

Commit

Permalink
ci: use docker compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
glimchb committed Aug 2, 2024
1 parent dba3b75 commit e619226
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sztp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ jobs:
uses: docker/setup-buildx-action@abe89fb761023d1d963c81f6b5e0df54236dc097

- name: Start containers
run: docker-compose up -d
run: docker compose up -d

- name: Run Tests
run: ./scripts/tests.sh

- name: Logs
if: failure()
run: docker-compose logs
run: docker compose logs

- name: Stop containers
if: always()
run: docker-compose down
run: docker compose down

0 comments on commit e619226

Please sign in to comment.