Skip to content

Commit 712a2be

Browse files
committed
WIP: test golangci-lint v1 github workflow
1 parent 446c087 commit 712a2be

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# version: latest
4949

5050
tests-on-windows:
51-
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
51+
# needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
5252
runs-on: windows-latest
5353
steps:
5454
- uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
run: make.exe test
6060

6161
tests-on-macos:
62-
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
62+
# needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
6363
runs-on: macos-latest
6464
steps:
6565
- uses: actions/checkout@v4
@@ -70,7 +70,7 @@ jobs:
7070
run: make test
7171

7272
tests-on-unix:
73-
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
73+
# needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
7474
strategy:
7575
matrix:
7676
os:

.golangci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,3 +196,4 @@ issues:
196196

197197
run:
198198
timeout: 5m
199+

cmd/golangci-lint/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Package: main
12
package main
23

34
import (

0 commit comments

Comments
 (0)