remove unused .travis.yml

This commit is contained in:
Dustin Mitchell 2021-07-20 11:00:54 -04:00
parent de261e11d0
commit e39974a917
No known key found for this signature in database
GPG key ID: BDB2CAFD47B1118A

View file

@ -1,31 +0,0 @@
language: go
env:
global:
- GO111MODULE="on"
go:
- 1.14.x
- tip
os:
- linux
- osx
matrix:
allow_failures:
- go: tip
fast_finish: true
install: true
script:
- diff -u <(echo -n) <(gofmt -d .)
- go mod vendor
- go test -v -mod=readonly ./...
after_success:
- go get -u -d github.com/spf13/hugo
- cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd -
sudo: false