mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
17 lines
260 B
YAML
17 lines
260 B
YAML
language: go
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- go: 1.8
|
|
- go: 1.9
|
|
- go: "1.10"
|
|
- go: 1.x
|
|
- go: tip
|
|
allow_failures:
|
|
- go: tip
|
|
script:
|
|
- go get -t -v ./...
|
|
- diff -u <(echo -n) <(gofmt -d -s .)
|
|
- go vet .
|
|
- go test -v -race ./...
|