We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92950b5 commit fb484c5Copy full SHA for fb484c5
1 file changed
.circleci/config.yml
@@ -3,15 +3,15 @@ version: 2
3
jobs:
4
build:
5
docker:
6
- - image: circleci/golang:1.17
+ - image: cimg/go:1.22
7
- image: bigtruedata/gcloud-pubsub-emulator
8
command: "start --host-port=0.0.0.0:8085"
9
- image: nsqio/nsq
10
command: "nsqd --lookupd-tcp-address=127.0.0.1:4160 --tcp-address=127.0.0.1:4150 --broadcast-address=127.0.0.1 --data-path=/var/opt --mem-queue-size=1000"
11
12
command: "nsqlookupd"
13
- working_directory: /go/src/github.com/pcelvng/task
+ working_directory: ~/task
14
steps:
15
- checkout
16
- run: go get -v -t -d ./...
17
- - run: go test -cover -v ./...
+ - run: go test -race -cover -v ./...
0 commit comments