magnetico/.travis.yml

37 lines
574 B
YAML
Raw Normal View History

2018-08-07 07:30:23 +00:00
# https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system
2018-08-03 08:51:20 +00:00
sudo: false
dist: xenial
2018-08-03 08:51:20 +00:00
language: go
go:
2019-09-18 01:02:41 +00:00
- "1.13"
env:
- GO111MODULE=on
2018-08-03 08:51:20 +00:00
# Only clone the most recent commit.
git:
depth: 1
2018-08-03 08:51:20 +00:00
before_install:
2018-08-03 09:54:26 +00:00
# Dump environment variables
- printenv
install:
- "go get -u -v github.com/kevinburke/go-bindata/..."
2018-08-03 09:23:00 +00:00
before_script:
- "make magneticod"
- "make magneticow"
2019-05-19 09:31:49 +00:00
- "make image"
script:
2018-08-03 08:51:20 +00:00
# The Unit Tests
- "make test"
2018-08-03 08:51:20 +00:00
# Static Analysis (vet)
- "make vet"
# Check formatting
- "make check-formatting"