We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d7ccc43 + 8739d45 commit 5ed7c5eCopy full SHA for 5ed7c5e
.travis.yml
@@ -1,19 +1,26 @@
1
language: go
2
sudo: false
3
4
+go:
5
+ - "1.8.x"
6
+ - "1.9.x"
7
+ - "1.10.x"
8
+ - "1.11.x"
9
+ - tip
10
+env:
11
+ - GIMME_OS=linux
12
+ - GIMME_OS=darwin
13
+ - GIMME_OS=windows
14
+
15
matrix:
- include:
- - go: 1.8
- - go: 1.9
16
+ allow_failures:
17
- go: tip
18
+ fast_finish: true
19
20
install:
- - # Skip
21
+ - go get -d -v ./...
22
23
script:
- - go get -t -v ./...
24
- diff -u <(echo -n) <(gofmt -d .)
25
- go tool vet .
- - GOOS=linux go build -o duckdns-linux
- - GOOS=darwin go build -o duckdns-macos
- - GOOS=windows go build -o duckdns-windows
26
+ - go build -v ./...
0 commit comments