We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ca69b commit 311e87aCopy full SHA for 311e87a
.github/workflows/ci.yml
@@ -37,6 +37,29 @@ jobs:
37
- name: Build
38
run: nix build
39
40
+ platform-tests:
41
+ name: multiplatform tests
42
+ runs-on: ${{ matrix.os }}
43
+ strategy:
44
+ matrix:
45
+ os: [ubuntu-latest, macos-latest, windows-latest]
46
+
47
+ steps:
48
+ - name: Set up Go 1.x
49
+ uses: actions/setup-go@v3
50
+ with:
51
+ go-version: 1.22
52
+ id: go
53
54
+ - name: Install gopls
55
+ run: go install golang.org/x/tools/gopls@latest
56
57
+ - name: Check out code into the Go module directory
58
+ uses: actions/checkout@v3
59
60
+ - name: go test
61
+ run: go test ./...
62
63
lint:
64
runs-on: ubuntu-latest
65
steps:
0 commit comments