File: .travis.yml

package info (click to toggle)
golang-github-nlopes-slack 0.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, experimental
  • size: 488 kB
  • sloc: makefile: 5
file content (24 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: go

go:
    - 1.4
    - 1.5
    - 1.6
    - 1.7
    - 1.8
    - 1.x
    - tip

before_install:
  - export PATH=$HOME/gopath/bin:$PATH

script:
  - go test -race ./...
  - go test -cover ./...

matrix:
    allow_failures:
        - go: tip

git:
  depth: 10