forked from prashantgupta24/activity-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (29 loc) · 661 Bytes
/
.travis.yml
File metadata and controls
36 lines (29 loc) · 661 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
language: go
go:
# - 1.7.x
# - 1.8.x
# - 1.9.x
# - 1.10.x
- 1.11.x
env:
- GO111MODULE=on
addons:
apt:
packages:
- libx11-dev xorg-dev
- libxtst-dev libpng++-dev
- xcb libxcb-xkb-dev x11-xkb-utils libx11-xcb-dev libxkbcommon-x11-dev
# - libusb-dev
- libxkbcommon-dev
- xsel
- xclip
# Don't email me the results of the test runs.
notifications:
email: false
before_install:
- export PATH=$PATH:$HOME/gopath/bin
- go get -t -v ./...
script:
- go test -v -failfast -race -coverprofile=coverage.txt ./...
after_success:
- bash <(curl -s https://codecov.io/bash)