Skip to content

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Go
2+
*.go text eol=lf

.github/workflows/linter.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
contents: read
1818

1919
jobs:
20-
lint:
20+
super-linter:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check out code base
@@ -43,8 +43,11 @@ jobs:
4343
VALIDATE_BASH_EXEC: true
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545

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 }}
4851
steps:
4952
- name: Check out code base
5053
if: github.event_name == 'push'
@@ -66,6 +69,12 @@ jobs:
6669

6770
- name: Golang linter
6871
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
6978

7079
shellcheck:
7180
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)