Skip to content

Commit 943263e

Browse files
author
Jan Kamieth
committed
chore: run custom golangci-lint wrapper in CI
- install pinned golangci-lint v2 in CI - run backend lint through custom-gcl
1 parent fdb7a4d commit 943263e

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,17 @@ jobs:
1919
go-version: "1.25"
2020
cache-dependency-path: backend/go.sum
2121

22-
- name: Run golangci-lint
23-
uses: golangci/golangci-lint-action@v7
22+
- name: Install golangci-lint
23+
uses: golangci/golangci-lint-action@v9
2424
with:
25+
version: v2.10.1
26+
install-only: true
2527
working-directory: backend
2628

29+
- name: Run custom golangci-lint
30+
working-directory: backend
31+
run: ./bin/custom-gcl run
32+
2733
backend-test:
2834
runs-on: ubuntu-latest
2935
steps:

0 commit comments

Comments
 (0)