Skip to content

Commit dad6124

Browse files
Including golangci-lint and updating go
1 parent 779e317 commit dad6124

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
language: go
22
go:
3-
- 1.8
3+
- 1.13.x
44
go_import_path: github.com/StudioSol/async
55
install:
66
- make dependency
77
script:
8+
- make lint
89
- make test
910
after_success:
1011
- bash <(curl -s https://codecov.io/bash)

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ test:
88
go test -race -v -coverprofile=profile.out -covermode=atomic $$d || exit 1; \
99
[ -f profile.out ] && cat profile.out >> coverage.txt && rm profile.out; \
1010
done
11+
12+
lint:
13+
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
14+
golangci-lint run --enable golint --enable gocyclo

0 commit comments

Comments
 (0)