mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 22:20:05 +00:00
29 lines
320 B
YAML
29 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
|