mirror of https://github.com/talgo-cloud/bimg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
417 B
19 lines
417 B
language: go
|
|
|
|
go:
|
|
- 1.6
|
|
- 1.5
|
|
- tip
|
|
|
|
script:
|
|
- diff -u <(echo -n) <(gofmt -s -d ./)
|
|
- diff -u <(echo -n) <(go vet ./)
|
|
- diff -u <(echo -n) <(golint ./)
|
|
- go test -v -race -covermode=atomic -coverprofile=coverage.out
|
|
|
|
after_success:
|
|
- goveralls -coverprofile=coverage.out -service=travis-ci
|
|
|
|
before_install:
|
|
- curl -s https://raw.githubusercontent.com/lovell/sharp/master/preinstall.sh | sudo bash -
|