mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-16 21:56:43 -05:00
16 lines
243 B
YAML
16 lines
243 B
YAML
language: go
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- go: "1.10.x"
|
|
script: go test -v ./...
|
|
- go: "1.11.x"
|
|
script: go test -v -mod=vendor ./...
|
|
|
|
go_import_path: willnorris.com/go/imageproxy
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
install: true
|