Skip to content

Commit

Permalink
Set Go minimum version to 1.14
Browse files Browse the repository at this point in the history
The `testhelper` package uses `http.Header`'s method `Values`, which
[was introduced in GO 1.14][1].

[1]: https://pkg.go.dev/net/http#Header.Values
  • Loading branch information
pierreprinetti committed Dec 10, 2021
1 parent 981bfd9 commit 3ca7762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
go-version:
- "1.13"
- "1.14"
- "1"

env:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gophercloud/gophercloud

go 1.13
go 1.14

require (
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e
Expand Down

0 comments on commit 3ca7762

Please sign in to comment.