Skip to content

Commit 0489893

Browse files
authored
Merge pull request #95 from shogo82148/go1.23-is-released
add Go 1.23 to the build matrix
2 parents bc22527 + 6e35008 commit 0489893

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/go.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ jobs:
1717
- windows-latest
1818
- macos-latest
1919
go:
20-
- "1"
20+
- "stable"
21+
- "1.23"
22+
- "1.22"
23+
- "1.21"
2124
- "1.20"
2225
- "1.19"
2326
- "1.18"
@@ -29,6 +32,19 @@ jobs:
2932
- "1.12"
3033
- "1.11"
3134

35+
# old Go versions doesn't support macos-latest
36+
exclude:
37+
- os: macos-latest
38+
go: "1.15"
39+
- os: macos-latest
40+
go: "1.14"
41+
- os: macos-latest
42+
go: "1.13"
43+
- os: macos-latest
44+
go: "1.12"
45+
- os: macos-latest
46+
go: "1.11"
47+
3248
steps:
3349
- name: Check out code into the Go module directory
3450
uses: actions/checkout@v4

0 commit comments

Comments
 (0)