echo-session/.travis.yml

14 lines
259 B
YAML
Raw Normal View History

2018-05-17 06:30:15 +03:00
language: go
sudo: false
go_import_path: github.com/go-session/echo-session
go:
- 1.9
before_install:
2018-06-13 10:15:27 +03:00
- go get -t -v ./...
2018-05-17 06:30:15 +03:00
script:
2018-06-13 10:15:27 +03:00
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)