Skip to content

Commit 3c7a55b

Browse files
committed
disable errcheck/unused
1 parent 0b27b79 commit 3c7a55b

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ on:
77
branches: [ main ]
88

99
jobs:
10-
lint:
10+
build:
1111
runs-on: ubuntu-latest
12-
continue-on-error: true
1312
steps:
1413
- uses: actions/checkout@v4
1514
- uses: actions/setup-go@v5
@@ -19,12 +18,5 @@ jobs:
1918
uses: golangci/golangci-lint-action@v7
2019
with:
2120
version: v2.0
22-
test:
23-
runs-on: ubuntu-latest
24-
steps:
25-
- uses: actions/checkout@v4
26-
- uses: actions/setup-go@v5
27-
with:
28-
go-version: '^1.24.2'
2921
- run: make test
3022

.golangci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
version: '2'
33
linters:
44
default: standard
5+
disable:
6+
- errcheck
7+
- unused
58
formatters:
69
enable:
710
- gofmt

0 commit comments

Comments
 (0)