aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c732b2be1b2c735a071415fad7b155cbe573d17d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: go
sudo: false
go_import_path: github.com/go-session/echo-session
go:
  - 1.9
before_install:
  - go get -t -v ./...

script:
  - go test -race -coverprofile=coverage.txt -covermode=atomic

after_success:
  - bash <(curl -s https://codecov.io/bash)