mirror of
https://git.keinpfusch.net/loweel/zorg
synced 2024-12-26 06:13:28 +01:00
25 lines
310 B
YAML
25 lines
310 B
YAML
|
language: go
|
||
|
|
||
|
env:
|
||
|
global:
|
||
|
- GO111MODULE="on"
|
||
|
|
||
|
go:
|
||
|
- 1.11.x
|
||
|
- 1.12.x
|
||
|
- 1.13.x
|
||
|
- tip
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- go: tip
|
||
|
fast_finish: true
|
||
|
|
||
|
before_install:
|
||
|
- go get github.com/mattn/goveralls
|
||
|
|
||
|
script:
|
||
|
- go install ./...
|
||
|
- go test -v ./...
|
||
|
- $GOPATH/bin/goveralls -service=travis-ci
|