mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-07 21:48:13 -08:00
19 lines
444 B
YAML
19 lines
444 B
YAML
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 ./...
|
|
- 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 -
|