Skip to content

Commit ac76ecf

Browse files
authored
ci(go): add 1.24 to test matrix (#892)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent d1f0b76 commit ac76ecf

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/go-test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: go-test
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
branches:
8+
- main
9+
pull_request:
10+
11+
jobs:
12+
go-test:
13+
name: go-test
14+
strategy:
15+
matrix:
16+
go-version: [1.22.x, 1.23.x, 1.24.x]
17+
platform: [ubuntu-latest]
18+
runs-on: ${{ matrix.platform }}
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-go@v5
22+
with:
23+
go-version: ${{ matrix.go-version }}
24+
- name: go-test
25+
run: go test ./...

0 commit comments

Comments
 (0)