mirror of
https://github.com/strongdm/comply
synced 2024-11-05 07:25:26 +00:00
28 lines
355 B
YAML
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
|