File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Go
2
+ * .go text eol =lf
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ permissions:
17
17
contents : read
18
18
19
19
jobs :
20
- lint :
20
+ super-linter :
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- name : Check out code base
43
43
VALIDATE_BASH_EXEC : true
44
44
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45
45
46
- go :
47
- runs-on : ubuntu-latest
46
+ golangci :
47
+ strategy :
48
+ matrix :
49
+ os : [ ubuntu-latest, macos-latest, windows-latest ]
50
+ runs-on : ${{ matrix.os }}
48
51
steps :
49
52
- name : Check out code base
50
53
if : github.event_name == 'push'
66
69
67
70
- name : Golang linter
68
71
uses : golangci/golangci-lint-action@537aa1903e5d359d0b27dbc19ddd22c5087f3fbc # v3.2.0
72
+ with :
73
+ version : v1.49
74
+ # Optional: golangci-lint command line arguments.
75
+ # args: --issues-exit-code=0
76
+ # Optional: show only new issues if it's a pull request. The default value is `false`.
77
+ only-new-issues : true
69
78
70
79
shellcheck :
71
80
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments