Skip to content

Commit c7ab0e1

Browse files
authored
adding lint job
1 parent 408a38e commit c7ab0e1

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,18 @@ jobs:
2727

2828
- name: vet
2929
run: go vet ./...
30+
31+
lint:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
36+
- uses: actions/setup-go@v5
37+
with:
38+
go-version: "1.24"
39+
40+
- name: golangci-lint
41+
uses: golangci/golangci-lint-action@v6
42+
with:
43+
version: v1.64
44+
args: --timeout=10m

0 commit comments

Comments
 (0)