File tree 1 file changed +11
-1
lines changed 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 37
37
- uses : actions/checkout@v2
38
38
39
39
- name : golangci-lint
40
- uses : golangci/golangci-lint-action@v2
40
+ uses : golangci/golangci-lint-action@v3
41
+ continue-on-error : true
41
42
with :
42
43
# The suppression of the rule `errcheck` may be removed after adding
43
44
# errors check in all methods calling EncodeXxx inside.
47
48
# The `//nolint` workaround was not the acceptable way of warnings suppression,
48
49
# cause those comments get rendered in documentation by godoc.
49
50
# See https://github.com/tarantool/go-tarantool/pull/160#discussion_r858608221
51
+ #
52
+ # The first run is for GitHub Actions error format.
50
53
args : -E goimports -D errcheck
51
54
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
+
52
62
codespell :
53
63
runs-on : ubuntu-latest
54
64
if : |
You can’t perform that action at this time.
0 commit comments