File: .travis.yml

package info (click to toggle)
golang-github-rjeczalik-notify 0.9.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 468 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 424 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
25
26
27
28
29
30
31
32
language: go

go:
 - 1.10.x
 - 1.11.x
 - master

os:
 - linux
 - osx

matrix:
  include:
   - os: osx
     go: 1.7.5
     env:
      - GOFLAGS="-tags kqueue"
  allow_failures:
   - go: tip

env:
  global:
   - GOBIN=$HOME/bin
   - PATH=$HOME/bin:$PATH

install:
 - go get -t -v ./...

script:
 - "(go version | grep -q 1.4) || go tool vet -all ."
 - go install $GOFLAGS ./...
 - go test -v -timeout 60s -race $GOFLAGS ./...