File: .travis.yml

package info (click to toggle)
golang-github-containerd-go-runc 0.0~git20201020.16b287b-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 164 kB
  • sloc: makefile: 2
file content (21 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)