mirror of
https://github.com/containrrr/watchtower.git
synced 2026-03-06 12:50:18 +01:00
20 lines
274 B
YAML
20 lines
274 B
YAML
language: go
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
go:
|
|
- 1.12.x
|
|
|
|
notifications:
|
|
# Don't email the results of the test runs.
|
|
email: false
|
|
|
|
before_script:
|
|
- go get -u golang.org/x/lint/golint
|
|
|
|
script:
|
|
- go build
|
|
- go test -v -race ./...
|
|
- golint -set_exit_status ./...
|
|
- docker build .
|