1 parent d4cd908 commit 50a3e1dCopy full SHA for 50a3e1d
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ go: ["1.22", "1.24"]
15
+ name: Go ${{ matrix.go }}
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-go@v5
19
+ with:
20
+ go-version: ${{ matrix.go }}
21
+ - run: go test ./...
.travis.yml
0 commit comments