We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac80a0 commit ec4a598Copy full SHA for ec4a598
1 file changed
.travis.yml
@@ -0,0 +1,28 @@
1
+language: go
2
+go:
3
+- "1.11"
4
+
5
+notifications:
6
+ email: false
7
8
+env:
9
+- GO111MODULE=on
10
11
+install:
12
+- go mod download
13
+- go mod verify
14
15
+script:
16
+- go install ./...
17
18
+before_deploy:
19
+- GIT_TAG=$TRAVIS_TAG make clean build
20
21
+deploy:
22
+- provider: releases
23
+ api_key: $GH_TOKEN
24
+ file_glob: true
25
+ file: build/*
26
+ skip_cleanup: true
27
+ on:
28
+ tags: true
0 commit comments