mirror of
https://github.com/omniscale/magnacarto.git
synced 2025-02-22 23:24:09 +01:00
18 lines
401 B
YAML
18 lines
401 B
YAML
language: go
|
|
go:
|
|
- 1.8
|
|
- 1.11
|
|
- 1.13
|
|
- tip
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
install:
|
|
- if [[ $TRAVIS_GO_VERSION == 1.13* ]]; then go get github.com/mattn/goveralls; fi
|
|
|
|
script:
|
|
- make test
|
|
# only run test-coverage for one go version
|
|
- if [[ $TRAVIS_GO_VERSION == 1.13* ]]; then make test-coverage; $HOME/gopath/bin/goveralls -coverprofile=magnacarto.coverprofile -service=travis-ci; fi
|