mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-23 00:56:29 +03:00
36 lines
532 B
YAML
36 lines
532 B
YAML
language: go
|
|
|
|
go:
|
|
#- "1.11" # Debian Stable golang version, fails - see below
|
|
#- "1.12" # Also fails due to progressbar Millisecond requirement
|
|
- "1.13"
|
|
- "1.14"
|
|
- "1.15"
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
|
|
|
|
script:
|
|
- go test -race ./...
|
|
- make
|
|
|
|
env:
|
|
GO111MODULE=on
|
|
|
|
cache:
|
|
directories:
|
|
- $GOCACHE
|
|
- $GOPATH/pkg/mod
|
|
|
|
# TODO: GitHub Releases deploy
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: always
|