gophish/.travis.yml

19 lines
265 B
YAML
Raw Normal View History

language: go
sudo: false
go:
- "1.10"
- 1.11
2019-05-31 18:42:15 +00:00
- 1.12
2019-10-04 23:30:48 +00:00
- 1.13
- tip
install:
- go get -d -v ./... && go build -v ./...
2015-02-21 14:56:14 +00:00
- go get gopkg.in/check.v1
- go get github.com/stretchr/testify
2019-12-16 04:13:19 +00:00
script:
- diff -u <(echo -n) <(gofmt -d .)
- go test -v ./...