File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 3737 - uses : actions/checkout@v2
3838
3939 - name : golangci-lint
40- uses : golangci/golangci-lint-action@v2
40+ uses : golangci/golangci-lint-action@v3
41+ continue-on-error : true
4142 with :
4243 # The suppression of the rule `errcheck` may be removed after adding
4344 # errors check in all methods calling EncodeXxx inside.
4748 # The `//nolint` workaround was not the acceptable way of warnings suppression,
4849 # cause those comments get rendered in documentation by godoc.
4950 # See https://github.com/tarantool/go-tarantool/pull/160#discussion_r858608221
51+ #
52+ # The first run is for GitHub Actions error format.
5053 args : -E goimports -D errcheck
5154
55+ - name : golangci-lint
56+ uses : golangci/golangci-lint-action@v3
57+ with :
58+ # The second run is for human-readable error format with a file name
59+ # and a line number.
60+ args : --out-${NO_FUTURE}format colored-line-number -E goimports -D errcheck
61+
5262 codespell :
5363 runs-on : ubuntu-latest
5464 if : |
You can’t perform that action at this time.
0 commit comments