Skip to content

Commit

Permalink
Test against go1.11-beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
dnephin committed Aug 4, 2018
1 parent a49e9e6 commit 2e39a6a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ jobs:
name: "Unit Test GO 1.10"
command: scripts/ci/test 1.10-alpine

test-golang-1.11:
working_directory: /work
docker: [{image: 'docker:17.06-git'}]
steps:
- checkout
- setup_remote_docker
- run:
name: "Unit Test GO 1.11"
command: scripts/ci/test 1.11beta3-alpine

coverage:
docker: [{image: 'circleci/golang:1.10'}]
working_directory: /go/src/gotest.tools
Expand Down Expand Up @@ -89,4 +99,5 @@ workflows:
- test-golang-1.8
- test-golang-1.9
- test-golang-1.10
- test-golang-1.11
- coverage
2 changes: 1 addition & 1 deletion poll/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func ExampleWaitOn() {
check := func(t poll.LogT) poll.Result {
actual, err := numOfProcesses()
if err != nil {
return poll.Error(errors.Wrapf(err, "failed to get number of processes: %s"))
return poll.Error(errors.Wrap(err, "failed to get number of processes"))
}
if actual == desired {
return poll.Success()
Expand Down

0 comments on commit 2e39a6a

Please sign in to comment.