k3s/vendor/github.com/Rican7/retry/.travis.yml
2019-11-10 04:05:59 +00:00

29 lines
371 B
YAML

language: go
go:
- 1.6
- tip
sudo: false
install:
# Get all imported packages
- make install-deps install-deps-dev
# Basic build errors
- make build
script:
# Lint
- make format-lint
- make import-lint
- make copyright-lint
# Run tests
- make test
matrix:
allow_failures:
- go: tip
fast_finish: true