imageproxy/.travis.yml

17 lines
243 B
YAML
Raw Normal View History

2015-05-05 06:42:30 -07:00
language: go
sudo: false
2018-09-15 16:14:06 +00:00
matrix:
include:
- go: "1.10.x"
script: go test -v ./...
- go: "1.11.x"
script: go test -v -mod=vendor ./...
2017-09-23 19:11:55 +00:00
go_import_path: willnorris.com/go/imageproxy
2015-05-05 06:42:30 -07:00
2018-09-15 16:14:06 +00:00
env:
- GO111MODULE=on
install: true