Skip to content

Commit

Permalink
Go 1.13 is too old.
Browse files Browse the repository at this point in the history
We need to test with more recent Go versions on Windows and
Darwin.  Additionally, we really would like to matrix test
things on Linux (which runs faster because of more resources
that are available) across a matrix of Go versions.

The matrix currently includes Go 1.13 through Go 1.18.  At
some point in the near future we will be pruning back on
support commitments for older Go versions.
  • Loading branch information
gdamore committed Mar 29, 2022
1 parent dff4e06 commit da1771c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.13
go-version: 1.18
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.13
go-version: 1.18
id: go

- name: Check out code into the Go module directory
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ jobs:
build:
name: build
runs-on: [ ubuntu-latest ]
strategy:
matrix:
go: [ '1.18', '1.17', '1.16', '1.15', '1.14', '1.13' ]
steps:

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.13
go-version: ${{ matrix.go }}
id: go

- name: Go version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.13
go-version: 1.18
id: go

- name: Check out code into the Go module directory
Expand Down

0 comments on commit da1771c

Please sign in to comment.