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.
2 parents fed2d3b + fe94800 commit c062e01Copy full SHA for c062e01
.github/workflows/ci.yaml
@@ -7,7 +7,24 @@ on:
7
branches: [ master ]
8
9
jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ go:
15
+ - "1.18"
16
+ - "1.19"
17
+ - "1.20"
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+
21
+ - name: Set up Go (${{ matrix.go }}
22
+ uses: actions/setup-go@v4
23
+ with:
24
+ go-version: ${{ matrix.go }}
25
26
+ - name: Build (${{ matrix.go }})
27
+ run: go build ./...
28
build-and-test:
29
runs-on: ubuntu-latest
30
strategy:
go.mod
@@ -1,6 +1,6 @@
1
module github.com/cockroachdb/errors
2
3
-go 1.20
+go 1.19
4
5
require (
6
github.com/cockroachdb/datadriven v1.0.2
0 commit comments