Skip to content

Commit 7391a48

Browse files
committed
chore: enable golangci-lint on Windows and MacOS
Signed-off-by: Matthieu MOREL <[email protected]>
1 parent 90e5996 commit 7391a48

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.gitattributes

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

.github/workflows/lint.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ permissions:
99

1010
jobs:
1111
golangci:
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
os: [ubuntu-latest, windows-latest, macos-latest]
1216
permissions:
1317
contents: read # for actions/checkout to fetch code
1418
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
1519
name: lint
16-
runs-on: ubuntu-latest
20+
runs-on: ${{ matrix.os }}
1721
steps:
1822
- name: Checkout repository
1923
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

0 commit comments

Comments
 (0)