File: .travis.yml

package info (click to toggle)
golang-github-golang-mock 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 272 kB
  • ctags: 297
  • sloc: sh: 22; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 262 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
language: go

go:
  # we intend to support only the latest version and perhaps the previous one
  - 1.7
  - 1.8

script:
  - go build ./...
  - go install github.com/golang/mock/mockgen
  - ./ci/check_go_fmt.sh
  - ./ci/check_go_generate.sh
  - go test -v ./...