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 eb962d8 commit 341ce0eCopy full SHA for 341ce0e
.circleci/config.yml
.github/workflows/test.yml
@@ -0,0 +1,16 @@
1
+# Based on https://github.com/mvdan/github-actions-golang
2
+on: [push, pull_request]
3
+name: Test
4
+jobs:
5
+ test:
6
+ strategy:
7
+ matrix:
8
+ go-version: [1.19.x, 1.20.x]
9
+ os: [ubuntu-latest, macos-latest, windows-latest]
10
+ runs-on: ${{ matrix.os }}
11
+ steps:
12
+ - uses: actions/setup-go@v3
13
+ with:
14
+ go-version: ${{ matrix.go-version }}
15
+ - uses: actions/checkout@v3
16
+ - run: go test ./...
0 commit comments