Browse Source

Setup CI with testing

master
Unknwon 9 years ago
parent
commit
e9b9e6eb53
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      .travis.yml

+ 4
- 1
.travis.yml View File

@@ -3,6 +3,7 @@ language: go
go: go:
- 1.4 - 1.4
- 1.5 - 1.5
- 1.6


before_install: before_install:
- sudo apt-get update -qq - sudo apt-get update -qq
@@ -12,7 +13,9 @@ before_install:
install: install:
- go get -t -v ./... - go get -t -v ./...


script: go build -v -tags "pam"
script:
- go build -v -tags "pam"
- go test -v -cover -race ./...


notifications: notifications:
email: email:


Loading…
Cancel
Save