Skip to content

Commit

Permalink
Merge pull request #139 from jarcoal/go120
Browse files Browse the repository at this point in the history
ci: test with go1.20
  • Loading branch information
maxatome committed Feb 2, 2023
2 parents 837f061 + df3afac commit e977d51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, tip]
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, tip]
full-tests: [false]
include:
- go-version: 1.19.x
- go-version: 1.20.x
full-tests: true

runs-on: ubuntu-latest
Expand All @@ -31,7 +31,7 @@ jobs:
if: matrix.full-tests
run: |
curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh |
sh -s -- -b $HOME/go/bin v1.50.1
sh -s -- -b $HOME/go/bin v1.51.0
$HOME/go/bin/golangci-lint run --max-issues-per-linter 0 \
--max-same-issues 0 \
-E bidichk \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Easy mocking of http responses from external resources.

## Install

Currently supports Go 1.13 to 1.19 and is regularly tested against tip.
Currently supports Go 1.13 to 1.20 and is regularly tested against tip.

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

Expand Down

0 comments on commit e977d51

Please sign in to comment.