-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change docker-compose to docker compose in test actions
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
continue-on-error: true | ||
|
||
- name: Pull docker images | ||
run: docker-compose -f docker-compose.test.yml pull | ||
run: docker compose -f docker-compose.test.yml pull | ||
|
||
- uses: jpribyl/[email protected] | ||
continue-on-error: true | ||
|
@@ -52,10 +52,10 @@ jobs: | |
run: make -C docker | ||
|
||
- name: Build images | ||
run: docker-compose -f docker-compose.test.yml build db test_runner | ||
run: docker compose -f docker-compose.test.yml build db test_runner | ||
|
||
- name: Run tests | ||
run: docker-compose -f docker-compose.test.yml run --rm test_runner python manage.py test --noinput --settings=freesound.test_settings | ||
run: docker compose -f docker-compose.test.yml run --rm test_runner python manage.py test --noinput --settings=freesound.test_settings | ||
|
||
- name: Notify success | ||
uses: voxmedia/github-action-slack-notify-build@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters