File: .travis.yml

package info (click to toggle)
golang-github-opencontainers-runtime-tools 0.8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,112 kB
  • sloc: sh: 544; makefile: 102
file content (21 lines) | stat: -rw-r--r-- 428 bytes parent folder | download
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.7.x
  - 1.8.x
  - 1.9.x
  - 1.10.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