We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90e5996 commit 7391a48Copy full SHA for 7391a48
.gitattributes
@@ -0,0 +1 @@
1
+*.go text eol=lf
.github/workflows/lint.yml
@@ -9,11 +9,15 @@ permissions:
9
10
jobs:
11
golangci:
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ os: [ubuntu-latest, windows-latest, macos-latest]
16
permissions:
17
contents: read # for actions/checkout to fetch code
18
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
19
name: lint
- runs-on: ubuntu-latest
20
+ runs-on: ${{ matrix.os }}
21
steps:
22
- name: Checkout repository
23
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
0 commit comments