Skip to content

Commit

Permalink
fix: added missing down in docker compose environment clean
Browse files Browse the repository at this point in the history
  • Loading branch information
shoriwe committed Jun 12, 2023
1 parent 8ce660e commit c93b9f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
files: ./coverage.txt
fail_ci_if_error: true
- name: Clean docker environment
run: docker compose --rmi all -v --remove-orphans
run: docker compose down --rmi all -v --remove-orphans

versioning:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
- name: Test
run: go test -p 1 -count 1 -v ./...
- name: Clean docker environment
run: docker compose --rmi all -v --remove-orphans
run: docker compose down --rmi all -v --remove-orphans

0 comments on commit c93b9f3

Please sign in to comment.