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 19c98f6 commit f09463fCopy full SHA for f09463f
.github/workflows/test.yml
@@ -0,0 +1,21 @@
1
+on: [push, pull_request]
2
+name: Test
3
+jobs:
4
+ test:
5
+ strategy:
6
+ matrix:
7
+ go-version: [1.15.x, 1.16.x]
8
+ os: [ubuntu-latest, macos-latest]
9
+ runs-on: ${{ matrix.os }}
10
+ steps:
11
+ - name: Install Go
12
+ uses: actions/setup-go@v2
13
+ with:
14
+ go-version: ${{ matrix.go-version }}
15
+ - name: Checkout code
16
+ uses: actions/checkout@v2
17
+ - name: Test
18
+ run: go test -race -bench . -benchmem ./...
19
+ - name: Test CBOR
20
+ run: go test -tags binary_log ./...
21
+
.travis.yml
0 commit comments