Add gofmt and go vet checks in CI

This commit is contained in:
Michail Kargakis 2020-04-10 23:58:56 +02:00
parent 900cf72eec
commit d66a0674ca
No known key found for this signature in database
GPG Key ID: BC06866FDEE7F397
1 changed files with 2 additions and 1 deletions

View File

@ -18,4 +18,5 @@ matrix:
script:
- go build -v ./...
- go test -count=1 -cover -race -v ./...
- go vet ./...
- FILES=$(gofmt -s -l . zipfs sftpfs mem); if [[ -n "${FILES}" ]]; then echo "You have go format errors; gofmt your changes"; exit 1; fi