1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-09-27 23:05:55 -04:00
amfora/.travis.yml

36 lines
528 B
YAML
Raw Normal View History

language: go
go:
2020-08-25 17:22:49 -04: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-02 17:24:51 -04:00
os:
- linux
- osx
- windows
before_install:
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
script:
2020-09-02 09:29:50 -04:00
- go test -race ./...
2020-09-02 12:56:47 -04:00
- make
2020-08-25 17:22:49 -04:00
env:
GO111MODULE=on
cache:
directories:
- $GOCACHE
- $GOMODCACHE
# TODO: GitHub Releases deploy
2020-08-27 23:14:14 -04:00
notifications:
email:
on_success: never
on_failure: always