Skip to content

Commit

Permalink
bump go version to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
mvrilo committed Jan 20, 2024
1 parent d75b3c7 commit 0f13de4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
lint:
strategy:
matrix:
go: ['1.16','1.21']
go: ['1.17','1.21']
os: ['ubuntu-latest']
name: lint
runs-on: ${{ matrix.os }}
Expand All @@ -19,7 +19,7 @@ jobs:
test:
strategy:
matrix:
go: ['1.16','1.21']
go: ['1.17','1.21']
os: ['ubuntu-latest']
name: test
runs-on: ${{ matrix.os }}
Expand Down
5 changes: 4 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
module github.com/mvrilo/go-redoc

go 1.16
go 1.17

require github.com/stretchr/testify v1.8.4

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit 0f13de4

Please sign in to comment.