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 6f8d978 commit acf53d2Copy full SHA for acf53d2
.travis.yml
@@ -2,20 +2,28 @@ language: go
2
3
go:
4
- 1.13
5
-
+
6
+env: GO111MODULE=on
7
arch:
8
- amd64
9
- arm64
10
os:
11
- windows
12
- osx
13
- linux
14
15
-env: GO111MODULE=on
+script: sh scripts/build.sh $TRAVIS_OS_NAME $TRAVIS_CPU_ARCH
16
17
-script:
18
- - sh scripts/build.sh $TRAVIS_OS_NAME $TRAVIS_CPU_ARCH
+jobs:
+ include:
19
+ - stage: "Unit Tests"
20
+ arch:
21
+ - amd64
22
+ os:
23
+ - linux
24
+ script:
25
+ - go test -v -cover encoder_test.go encoder.go helper.go
26
+ - go test -v -cover helper_test.go helper.go
27
28
deploy:
29
provider: releases
0 commit comments