k3s/vendor/github.com/Rican7/retry/.travis.yml

29 lines
371 B
YAML
Raw Normal View History

2019-11-08 21:45:10 +00:00
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