Skip to content

Commit

Permalink
Bump Go version in go.mod and for quick tests to 1.14 (#29)
Browse files Browse the repository at this point in the history
Go 1.13 was released in September 2019, more than two years ago.
Updating to one later release should be fine.

The primary reason for doing this is the introduction of
"testing".T.Cleanup in Go 1.14 (https://pkg.go.dev/testing#T.Cleanup).

Signed-off-by: Michael Hanselmann <public@hansmi.ch>
  • Loading branch information
hansmi authored Dec 3, 2021
1 parent d09d487 commit 02831f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
gover: ['1.13.15']
gover: ['1.14.15']
runs-on: "${{matrix.os}}"
name: "go${{matrix.gover}} on ${{matrix.os}} (quick)"
steps:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module periph.io/x/devices/v3

go 1.13
go 1.14

require (
github.com/maruel/ansi256 v1.0.2
Expand Down

0 comments on commit 02831f4

Please sign in to comment.