Skip to content

Commit

Permalink
go.mod: minimal go version is 1.16
Browse files Browse the repository at this point in the history
although sethgrid/pester asserts 1.14 it uses io.NopCloser which was
only added (moved) in 1.16 (https://pkg.go.dev/io#NopCloser)
  • Loading branch information
miku committed Jan 2, 2024
1 parent 5a5c703 commit c560c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.14'
go-version: '1.16'

- name: Unit tests
run: go test -v ./...
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/miku/zek

go 1.14
go 1.16

require (
github.com/sethgrid/pester v1.2.0
Expand Down

0 comments on commit c560c10

Please sign in to comment.