File: .travis.yml

package info (click to toggle)
golang-github-beevik-etree 1.0.0%2Bgit20171015.af219c0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 136 kB
  • sloc: makefile: 2
file content (18 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: go
sudo: false

go:
  - 1.5.x
  - 1.6.x
  - 1.7.x
  - 1.8.x
  - 1.9.x
  - tip

matrix:
  allow_failures:
    - go: tip

script:
  - go vet ./...
  - go test -v ./...