Skip to content

Commit dcdf652

Browse files
committed
ci: run lint on all platforms
1 parent 98c7cd6 commit dcdf652

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/lint.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@ name: Lint
33
on: push
44

55
jobs:
6-
golangci-lint:
7-
name: golangci-lint
8-
runs-on: ubuntu-latest
6+
lint:
97
permissions:
108
contents: read
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
os:
13+
- windows-latest
14+
- ubuntu-latest
15+
- macos-latest
16+
runs-on: ${{ matrix.os }}
1117
steps:
1218
- name: Checkout code
1319
uses: actions/checkout@v4

0 commit comments

Comments
 (0)