start a lint script

This commit is contained in:
Michael McLoughlin
2018-11-30 21:47:10 -08:00
parent 0ba8a60ea5
commit 7ab57635f6
2 changed files with 6 additions and 0 deletions

View File

@@ -2,4 +2,5 @@ language: go
go:
- 1.11.1
script:
- ./script/lint
- go test -v ./...

5
script/lint Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash -ex
# Ensure the repository is clean after code generation.
./script/generate
test -z "$(git status --porcelain)"