mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
e5d28115ee
- all changes here are attributed to difference in behaviour between, namely: - resolution of secondary test dependencies - prunning of non-Go files Signed-off-by: Ilya Dmitrichenko <errordeveloper@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
21 lines
510 B
YAML
21 lines
510 B
YAML
language: go
|
|
go:
|
|
- 1.13.x
|
|
- 1.14.x
|
|
- 1.15.x
|
|
|
|
install:
|
|
- go get -t ./...
|
|
- go get -u github.com/vbatts/git-validation
|
|
- go get -u github.com/kunalkushwaha/ltag
|
|
|
|
before_script:
|
|
- pushd ..; git clone https://github.com/containerd/project; popd
|
|
|
|
script:
|
|
- DCO_VERBOSITY=-q ../project/script/validate/dco
|
|
- ../project/script/validate/fileheader ../project/
|
|
- go test -v -race -covermode=atomic -coverprofile=coverage.txt ./...
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|