Skip to content

Commit 54ee2d2

Browse files
committed
skip gofumpt on Windows
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 21cb7b3 commit 54ee2d2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: .github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ jobs:
3232
uses: golangci/golangci-lint-action@v7
3333
with:
3434
version: v2.0
35-
args: --print-resources-usage --timeout=10m --verbose
35+
args: >-
36+
--print-resources-usage
37+
--timeout=10m
38+
--verbose
39+
${{ matrix.os == 'windows-latest' && '--disable=gofumpt' || '' }}
3640
3741
- name: Test
3842
run: go test -v -cover "-coverprofile=coverage.txt" -covermode=atomic ./...

0 commit comments

Comments
 (0)