Skip to content

Commit 40651c1

Browse files
author
Pieter van Beerendonk
committed
docker compose without dash
1 parent 7922c3f commit 40651c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
uses: actions/checkout@v4
1212

1313
- name: Run tests with pytest
14-
run: docker-compose run --rm tester
14+
run: docker compose run --rm tester
1515

1616
- name: Stop containers
1717
if: always()
18-
run: docker-compose stop
18+
run: docker compose stop
1919

2020
lint:
2121
runs-on: ubuntu-latest

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python:
88
cache:
99
pip: true
1010
install:
11-
- docker-compose up
11+
- docker compose up
1212
- pip install -Ur tests/requirements.txt
1313
script:
1414
- cd tests && pytest

0 commit comments

Comments
 (0)