ipld-eth-server/vendor/go.uber.org/dig/.travis.yml

19 lines
273 B
YAML
Raw Normal View History

language: go
sudo: false
go_import_path: go.uber.org/dig
matrix:
include:
- go: "1.10"
- go: "1.11"
env: LINT=1
cache:
directories:
- vendor
install:
- make dependencies
script:
- test -z "$LINT" && echo "Skipping lint" || make lint
- make ci