Skip to content

Commit

Permalink
Run tests on the latest 2 go versions, update go directive in go.mod
Browse files Browse the repository at this point in the history
We support latest two versions, we should be testing on them.

Go directive shouldn't change much, I'm updating it just to be in sync.
We're still pre Go 1.21 so this should not affect the users.
  • Loading branch information
rabbbit committed Jul 9, 2023
1 parent 2fd8c93 commit 6855769
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:

strategy:
matrix:
go: ["1.17.x", "1.18.x"]
go: ["1.19.x", "1.20.x"]
include:
- go: 1.18.x
- go: 1.20.x
latest: true

steps:
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 go.uber.org/ratelimit

go 1.18
go 1.20

require (
github.com/benbjohnson/clock v1.3.0
Expand Down

0 comments on commit 6855769

Please sign in to comment.