mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 03:57:36 +03:00
Add Travis CI integration
This commit is contained in:
parent
3b53b610a6
commit
dea429d0f0
1 changed files with 20 additions and 0 deletions
20
.travis.yml
Normal file
20
.travis.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
language: go
|
||||
|
||||
go:
|
||||
- 1.8.x
|
||||
- 1.9
|
||||
|
||||
sudo: required
|
||||
dist: trusty
|
||||
|
||||
install:
|
||||
- go get -t ./...
|
||||
- go get github.com/golang/lint/golint
|
||||
# Install gometalinter and certain linters
|
||||
- go get github.com/alecthomas/gometalinter
|
||||
- go get github.com/client9/misspell/cmd/misspell
|
||||
- go get github.com/gordonklaus/ineffassign
|
||||
|
||||
script:
|
||||
- go test -race -v .
|
||||
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign --tests .
|
Loading…
Add table
Add a link
Reference in a new issue