Skip to content

Commit e977d51

Browse files
authored
Merge pull request #139 from jarcoal/go120
ci: test with go1.20
2 parents 837f061 + df3afac commit e977d51

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, tip]
13+
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, tip]
1414
full-tests: [false]
1515
include:
16-
- go-version: 1.19.x
16+
- go-version: 1.20.x
1717
full-tests: true
1818

1919
runs-on: ubuntu-latest
@@ -31,7 +31,7 @@ jobs:
3131
if: matrix.full-tests
3232
run: |
3333
curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh |
34-
sh -s -- -b $HOME/go/bin v1.50.1
34+
sh -s -- -b $HOME/go/bin v1.51.0
3535
$HOME/go/bin/golangci-lint run --max-issues-per-linter 0 \
3636
--max-same-issues 0 \
3737
-E bidichk \

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Easy mocking of http responses from external resources.
44

55
## Install
66

7-
Currently supports Go 1.13 to 1.19 and is regularly tested against tip.
7+
Currently supports Go 1.13 to 1.20 and is regularly tested against tip.
88

99
`v1` branch has to be used instead of `master`.
1010

0 commit comments

Comments
 (0)