Updated github workflows

pull/7/head
Ian Davis 2022-09-20 13:36:41 +01:00
parent 52a051450d
commit 6eca7f6e5c
No known key found for this signature in database
GPG Key ID: F3B290C645FE1783
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
language: go
go:
- "1.14.x"
- "1.15.x"
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
before_script:
- GO_FILES=$(find . -iname '*.go' | grep -v /vendor/)
- PKGS=$(go list ./... | grep -v /vendor/)
script:
- test -z $(gofmt -s -l $GO_FILES)
- go test -v -race $PKGS
- go vet $PKGS