Skip to content

Commit

Permalink
Merge pull request #23 from adamdecaf/update-ci
Browse files Browse the repository at this point in the history
ci: use Go 1.10/1.11, test with -race

Signed-off-by: Tim Heckman <[email protected]>
  • Loading branch information
theckman committed Sep 26, 2018
2 parents 886344b + 44dfe27 commit 6cb7b4e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: go
go:
- 1.9.3
- 1.8.6
script: go test -v ./... -check.vv
- 1.10.x
- 1.11.x
script: go test -v -check.vv -race ./...
sudo: false
notifications:
email:
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version: '{build}'
build: false
deploy: false

clone_folder: 'c:\gopath\src\github.com\theckman\go-flock'
clone_folder: 'c:\gopath\src\github.com\gofrs\flock'

environment:
GOPATH: 'c:\gopath'
GOVERSION: '1.9.2'
GOVERSION: '1.11'

init:
- git config --global core.autocrlf input
Expand All @@ -22,4 +22,4 @@ install:

test_script:
- go get -t ./...
- go test -v ./...
- go test -race -v ./...

0 comments on commit 6cb7b4e

Please sign in to comment.