Skip to content

Commit

Permalink
Specify correct minimum go version in go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
jstemmer committed Oct 4, 2019
1 parent c92ec55 commit cc1f095
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ language: go

go:
- tip
- "1.13.x"
- "1.12.x"
- "1.11.x"
- "1.10.x"
- "1.9.x"
- "1.8.x"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ expect junit xml reports (e.g. [Jenkins](http://jenkins-ci.org)).

## Installation

Go version 1.1 or higher is required. Install or update using the `go get`
Go version 1.2 or higher is required. Install or update using the `go get`
command:

```bash
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/jstemmer/go-junit-report

go 1.13
go 1.2

0 comments on commit cc1f095

Please sign in to comment.