amfora/.travis.yml

36 lines
532 B
YAML
Raw Normal View History

language: go
go:
2020-08-26 00:22:49 +03:00
#- "1.11" # Debian Stable golang version, fails - see below
#- "1.12" # Also fails due to progressbar Millisecond requirement
- "1.13"
- "1.14"
- "1.15"
2020-09-03 00:24:51 +03:00
os:
- linux
- osx
- windows
before_install:
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
script:
2020-09-02 16:29:50 +03:00
- go test -race ./...
2020-09-02 19:56:47 +03:00
- make
2020-08-26 00:22:49 +03:00
env:
GO111MODULE=on
cache:
directories:
- $GOCACHE
2020-09-03 00:52:27 +03:00
- $GOPATH/pkg/mod
# TODO: GitHub Releases deploy
2020-08-28 06:14:14 +03:00
notifications:
email:
on_success: never
on_failure: always