Last change
on this file since 92 was 80, checked in by asciimoo, 7 years ago |
Merge pull request #63 from SYNStack/minversion
Update minimum version requirement to Go >= 1.10
|
File size:
342 bytes
|
Line | |
---|
1 | language: go
|
---|
2 |
|
---|
3 | go:
|
---|
4 | - 1.10.3
|
---|
5 |
|
---|
6 | script:
|
---|
7 | # static checks
|
---|
8 | - test -z "$(gofmt -l ./)"
|
---|
9 | - test -z "$(go vet -v ./...)"
|
---|
10 |
|
---|
11 | # run tests on a standard platform
|
---|
12 | - go test -v ./...
|
---|
13 |
|
---|
14 | # build test for supported platforms
|
---|
15 | - GOOS=linux go build
|
---|
16 | - GOOS=darwin go build
|
---|
17 | - GOOS=freebsd go build
|
---|
18 | - GOOS=windows go build
|
---|
19 | - GOARCH=386 go build
|
---|
Note:
See
TracBrowser
for help on using the repository browser.