This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin gofumports and update golangci-lint
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,7 @@ jobs: | |
- name: "Install linting tools" | ||
run: | | ||
# This is done before checking out, as to not modify go.mod | ||
go install mvdan.cc/gofumpt/gofumports@latest | ||
go install github.com/mgechev/revive@latest | ||
go install mvdan.cc/gofumpt/[email protected] | ||
go install golang.org/x/tools/cmd/stringer@latest | ||
- uses: "actions/checkout@v2" | ||
- name: "Go Mod Tidy" | ||
|
@@ -34,7 +33,8 @@ jobs: | |
fi | ||
- uses: "golangci/golangci-lint-action@v2" | ||
with: | ||
version: "v1.42" | ||
version: "v1.43" | ||
args: "--timeout 5m0s" | ||
skip-go-installation: true | ||
skip-pkg-cache: true | ||
skip-build-cache: false | ||
|