Skip to content

Commit 44b6af2

Browse files
committed
go fmt and updates in .travis.yml
1 parent a6deb71 commit 44b6af2

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@ addons:
55
- xorg-dev
66
language: go
77
go:
8-
- "1.6"
98
- "1.x"
109
install:
1110
- # 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).
1211
script:
1312
- go get -t -v ./...
1413
- diff -u <(echo -n) <(gofmt -d -s .)
15-
- go tool vet .
14+
- go vet .
1615
- go test -v -race ./...

actions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
// "math/rand"
1111
)
1212

13-
type ActionIndex uint8
13+
type ActionIndex uint8
1414

1515
const (
1616
ActionNIL = ActionIndex(iota)

0 commit comments

Comments
 (0)