Skip to content

Commit

Permalink
Merge pull request #127 from dhartunian/downgrade-go-requirement-to-1.19
Browse files Browse the repository at this point in the history
Downgrade go version requirement to 1.19
  • Loading branch information
dhartunian authored Aug 28, 2023
2 parents fed2d3b + fe94800 commit c062e01
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,24 @@ on:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- "1.18"
- "1.19"
- "1.20"
steps:
- uses: actions/checkout@v3

- name: Set up Go (${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

- name: Build (${{ matrix.go }})
run: go build ./...
build-and-test:
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cockroachdb/errors

go 1.20
go 1.19

require (
github.com/cockroachdb/datadriven v1.0.2
Expand Down

0 comments on commit c062e01

Please sign in to comment.