Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
- name: Run tests
run: |
docker-compose up -d
docker compose up -d
go vet ./...
go run honnef.co/go/tools/cmd/staticcheck@latest ./...
go test -race -v ./...
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Unit tests expect Consul and a set of NSQ daemons to be running. Start them
using Docker Compose, and then run unit tests.

```shell
docker-compose up -d
docker compose up -d
go test -v -race ./...
docker-compose down
docker compose down
```