Skip to content

Commit

Permalink
Fix docker compose CLI usage
Browse files Browse the repository at this point in the history
  • Loading branch information
medge-mailgun committed Sep 18, 2024
1 parent dd8f762 commit 450a971
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
run: go mod download

- name: Start containers
run: docker-compose up -d --build
run: docker compose up -d --build

- name: Test
run: make test

- name: Stop containers
if: always()
run: docker-compose down
run: docker compose down
1 change: 1 addition & 0 deletions setter/setter.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ func SetDefaultNew[T comparable](dest *T, defaultValues ...T) {
for _, value := range defaultValues {
if !IsZeroNew(value) {
*dest = value
return
}
}
}
Expand Down

0 comments on commit 450a971

Please sign in to comment.