Skip to content

Commit b6e1ff8

Browse files
committed
ci: update docker-compose to docker compose
1 parent de699ea commit b6e1ff8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
- name: Integration Test
4848
id: integration-test
4949
run: |
50-
docker-compose -f docker-compose.ci.yaml build sut
51-
docker-compose -f docker-compose.ci.yaml up --exit-code-from sut
52-
docker-compose -f docker-compose.ci.yaml rm --stop --force
50+
docker compose -f docker-compose.ci.yaml build sut
51+
docker compose -f docker-compose.ci.yaml up --exit-code-from sut
52+
docker compose -f docker-compose.ci.yaml rm --stop --force
5353
- uses: act10ns/slack@v2
5454
with:
5555
status: ${{ job.status }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FLAKE8=$(VENV)/bin/flake8
77
MYPY=$(VENV)/bin/mypy
88
TOX=$(VENV)/bin/tox
99
PYTEST=$(VENV)/bin/pytest
10-
DOCKER_COMPOSE=docker-compose
10+
DOCKER_COMPOSE=docker compose
1111
PRE_COMMIT=$(VENV)/bin/pre-commit
1212
BUILD=$(VENV)/bin/build
1313
WHEEL=$(VENV)/bin/wheel

0 commit comments

Comments
 (0)