We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
go fmt
.travis.yml
1 parent a6deb71 commit 44b6af2Copy full SHA for 44b6af2
2 files changed
.travis.yml
@@ -5,12 +5,11 @@ addons:
5
- xorg-dev
6
language: go
7
go:
8
- - "1.6"
9
- "1.x"
10
install:
11
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
12
script:
13
- go get -t -v ./...
14
- diff -u <(echo -n) <(gofmt -d -s .)
15
- - go tool vet .
+ - go vet .
16
- go test -v -race ./...
actions.go
@@ -10,7 +10,7 @@ import (
// "math/rand"
)
-type ActionIndex uint8
+type ActionIndex uint8
const (
ActionNIL = ActionIndex(iota)
0 commit comments