File: .travis.yml

package info (click to toggle)
golang-github-opencontainers-runtime-tools 0.9.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,108 kB
  • sloc: sh: 557; makefile: 104
file content (19 lines) | stat: -rw-r--r-- 409 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: go
go:
  - 1.10.x
  - 1.11.x

sudo: false

before_install:
  - mkdir --parents $GOPATH/src/golang.org/x
    && git clone --depth=1 https://go.googlesource.com/lint $GOPATH/src/golang.org/x/lint
    && go get golang.org/x/lint/golint
  - go get github.com/vbatts/git-validation

install: true

script:
  - git-validation -run DCO,short-subject -v -range ${TRAVIS_COMMIT_RANGE}
  - make
  - make test