Skip to content

Commit c062e01

Browse files
authored
Merge pull request #127 from dhartunian/downgrade-go-requirement-to-1.19
Downgrade go version requirement to 1.19
2 parents fed2d3b + fe94800 commit c062e01

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,24 @@ on:
77
branches: [ master ]
88

99
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 }}
1025

26+
- name: Build (${{ matrix.go }})
27+
run: go build ./...
1128
build-and-test:
1229
runs-on: ubuntu-latest
1330
strategy:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cockroachdb/errors
22

3-
go 1.20
3+
go 1.19
44

55
require (
66
github.com/cockroachdb/datadriven v1.0.2

0 commit comments

Comments
 (0)