mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
06c797f517
Signed-off-by: Cory Snider <csnider@mirantis.com>
23 lines
264 B
YAML
23 lines
264 B
YAML
sudo: false
|
|
language: go
|
|
go_import_path: go.uber.org/multierr
|
|
|
|
env:
|
|
global:
|
|
- GO111MODULE=on
|
|
|
|
go:
|
|
- oldstable
|
|
- stable
|
|
|
|
before_install:
|
|
- go version
|
|
|
|
script:
|
|
- |
|
|
set -e
|
|
make lint
|
|
make cover
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|