-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (33 loc) 路 784 Bytes
/
Copy path.travis.yml
File metadata and controls
43 lines (33 loc) 路 784 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
sudo: false
language: go
go_import_path: github.com/imperfectgo/jsonwat
go:
- '1.7.x'
- '1.8.x'
- '1.9.x'
- '1.10.x'
- '1.11.x'
- master
matrix:
# It's ok if our code fails on unstable development versions of Go.
allow_failures:
- go: master
# Don't wait for tip tests to finish. Mark the test run green if the
# tests pass on the stable versions of Go.
fast_finish: true
notifications:
email: false
install: true
before_script:
- go get github.com/go-playground/overalls
- go get -t ./...
script:
- overalls -project=github.com/imperfectgo/jsonwat -covermode=atomic -- -race
after_script:
- mv overalls.coverprofile coverage.txt
- bash <(curl -s https://codecov.io/bash)
branches:
only:
- master
- develop
- /release-.*/