We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31bfec2 commit 2d9831fCopy full SHA for 2d9831f
1 file changed
.github/workflows/ci.yml
@@ -11,6 +11,33 @@ on:
11
- cron: "30 10 * * 0"
12
13
jobs:
14
+ test-build:
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ os:
19
+ - windows-latest
20
+ - ubuntu-latest
21
+ - macos-latest
22
+ go-version:
23
+ - "1.18"
24
+ - "1.19"
25
+ - "1.20"
26
+ - "1.21"
27
+ - "1.22"
28
+ - "1.23"
29
+ - "^1"
30
+ runs-on: ${{ matrix.os }}
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - uses: actions/setup-go@v5
34
+ with:
35
+ go-version: ${{ matrix.go-version }}
36
+ - name: go build check
37
+ run: go build ./...
38
+ - name: go test build check
39
+ run: go test -run none ./...
40
+
41
test-windows:
42
strategy:
43
fail-fast: false
0 commit comments