Skip to content

Commit

Permalink
🐋 Update to docker compose v2 (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
OLILHR authored Aug 7, 2024
1 parent f85b8f6 commit ecd0d6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Create .env file
run: python create_env_file.py
- name: Start containers
run: docker-compose up -d
run: docker compose up -d
- name: Run Tests and Record Coverage
run: |
tox -e coverage
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Create .env file
run: python create_env_file.py
- name: Start containers
run: docker-compose up -d
run: docker compose up -d
- name: Run tests
run: |
tox -e tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Create .env file
run: python create_env_file.py
- name: Start containers
run: docker-compose up -d
run: docker compose up -d
- name: Run the Unit Tests via Tox
run: |
tox -e tests

0 comments on commit ecd0d6b

Please sign in to comment.