blob: 67467e14079ef382a1d78b93a50648111cae6a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
sudo: false
language: go
go:
- 1.4.1
before_script:
- FIXED=$(go fmt ./... | wc -l); if [ $FIXED -gt 0 ]; then echo "gofmt - $FIXED file(s) not formatted correctly, please run gofmt to fix this." && exit 1; fi
os:
- linux
- osx
notifications:
email: false
|