mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
29 lines
371 B
YAML
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
|