mirror of https://github.com/spf13/cast.git
22 lines
330 B
YAML
22 lines
330 B
YAML
language: go
|
|
env:
|
|
- GO111MODULE=on
|
|
sudo: required
|
|
go:
|
|
- "1.11.x"
|
|
- "1.12.x"
|
|
- tip
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
exclude:
|
|
- os: windows
|
|
go: tip
|
|
fast_finish: true
|
|
script:
|
|
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then go test -v -race ./...; else make check; fi
|