1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-01-24 05:26:55 +02:00
oauth2-proxy/test.sh

12 lines
256 B
Bash
Raw Normal View History

2014-11-09 21:48:09 -05:00
#!/bin/bash
set -e
2017-03-28 23:09:53 -04:00
echo "gofmt"
diff -u <(echo -n) <(gofmt -d $(find . -type f -name '*.go' -not -path "./.godeps/*"))
echo "go vet"
go vet ./...
echo "go test"
2014-11-09 21:48:09 -05:00
go test -timeout 60s ./...
2017-03-28 23:09:53 -04:00
echo "go test -race"
2014-11-09 21:48:09 -05:00
GOMAXPROCS=4 go test -timeout 60s -race ./...