We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd39ac commit 2b7c04eCopy full SHA for 2b7c04e
2 files changed
.github/workflows/main.yml
@@ -18,7 +18,7 @@ jobs:
18
- name: Run Linters
19
uses: golangci/golangci-lint-action@v3
20
with:
21
- version: v1.48.0
+ version: v1.50.0
22
args: --verbose
23
tests:
24
name: Tests with coverage
Makefile
@@ -2,7 +2,7 @@ export GO111MODULE=on
2
3
format-check: ## Format the code and run linters
4
@if test ! -e ./bin/golangci-lint; then \
5
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin v1.48.0; \
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b ./bin v1.50.0; \
6
fi
7
@./bin/golangci-lint run --fix
8
0 commit comments