Skip to content

Commit

Permalink
ci: enable go1.18 + upgrade golangci-lint to v1.45.0
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Soulé <btik-git@scoubidou.com>
  • Loading branch information
maxatome committed Mar 18, 2022
1 parent 0be0f8b commit 6b1d576
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -10,10 +10,10 @@ jobs:
test:
strategy:
matrix:
go-version: [1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, tip]
go-version: [1.9.x, 1.10.x, 1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, tip]
full-tests: [false]
include:
- go-version: 1.17.x
- go-version: 1.18.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.44.2
sh -s -- -b $HOME/go/bin v1.45.0
$HOME/go/bin/golangci-lint run --max-issues-per-linter 0 \
--max-same-issues 0 \
-E bidichk \
Expand Down Expand Up @@ -71,5 +71,5 @@ jobs:
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go get github.com/mattn/goveralls
go install github.com/mattn/goveralls@v0.0.9
goveralls -coverprofile=coverage.out -service=github
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -4,7 +4,7 @@ Easy mocking of http responses from external resources.

## Install

Currently supports Go 1.9 - 1.17.
Currently supports Go 1.9 - 1.18.

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

Expand Down

0 comments on commit 6b1d576

Please sign in to comment.