We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779e317 commit dad6124Copy full SHA for dad6124
.travis.yml
@@ -1,10 +1,11 @@
1
language: go
2
go:
3
- - 1.8
+ - 1.13.x
4
go_import_path: github.com/StudioSol/async
5
install:
6
- make dependency
7
script:
8
+ - make lint
9
- make test
10
after_success:
11
- bash <(curl -s https://codecov.io/bash)
Makefile
@@ -8,3 +8,7 @@ test:
go test -race -v -coverprofile=profile.out -covermode=atomic $$d || exit 1; \
[ -f profile.out ] && cat profile.out >> coverage.txt && rm profile.out; \
done
+
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