Skip to content

Commit 34f9144

Browse files
authored
Merge pull request #38 from vmihailenco/fix/build-script
Fix build
2 parents 8b0a065 + 595e6ae commit 34f9144

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

.travis.yml

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
dist: xenial
12
sudo: false
23
language: go
34

@@ -13,16 +14,7 @@ matrix:
1314
allow_failures:
1415
- go: tip
1516

16-
install:
17-
- go get github.com/go-redis/redis
18-
- go get github.com/go-redis/redis_rate
19-
- go get github.com/bsm/redis-lock
20-
- go get github.com/vmihailenco/msgpack
21-
- go get github.com/iron-io/iron_go3/mq
22-
- go get github.com/aws/aws-sdk-go/service/sqs
23-
- go get github.com/valyala/gozstd
24-
- go get github.com/hashicorp/golang-lru/simplelru
25-
- go get github.com/satori/go.uuid
26-
- go get github.com/caio/go-tdigest
27-
- go get github.com/onsi/ginkgo
28-
- go get github.com/onsi/gomega
17+
env:
18+
- GO111MODULE=on
19+
20+
go_import_path: github.com/vmihailenco/taskq

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
all:
22
go test ./...
33
go test ./... -short -race
4+
go test ./... -run=NONE -bench=. -benchmem
45
env GOOS=linux GOARCH=386 go test ./...
5-
go vet
6+
go vet ./...
7+
go get github.com/gordonklaus/ineffassign
8+
ineffassign .

0 commit comments

Comments
 (0)