1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
2018-06-08 13:23:07 -07:00

28 lines
355 B
YAML

language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
- master
stages:
- lint
- test
jobs:
include:
- stage: lint
script:
- go get github.com/golang/lint/golint
- golint -set_exit_status
- go vet -v
- stage: test
script:
- go test -v
matrix:
allow_failures:
- go: master
fast_finish: true