mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-10 00:20:02 +00:00
30 lines
320 B
YAML
30 lines
320 B
YAML
|
language: go
|
||
|
|
||
|
sudo: required
|
||
|
|
||
|
go:
|
||
|
- 1.5.x
|
||
|
- 1.6.x
|
||
|
- 1.7.x
|
||
|
- 1.8.x
|
||
|
- 1.9.x
|
||
|
- tip
|
||
|
|
||
|
# Use Go 1.5's vendoring experiment for 1.5 tests.
|
||
|
env:
|
||
|
- GO15VENDOREXPERIMENT=1
|
||
|
|
||
|
install:
|
||
|
- make get-deps
|
||
|
|
||
|
script:
|
||
|
- make unit-with-race-cover
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- go: tip
|
||
|
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|