From 3a24b9e93029b821b0918e0e450e50bc23f7a33b Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Mon, 22 Dec 2025 17:06:58 +0100 Subject: [PATCH] fix: replace linting with GH action --- .github/workflows/ci.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 437f4a1c..54fbcf6f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,8 +38,13 @@ jobs: if: ${{ github.event_name == 'pull_request' }} run: go mod tidy - - name: Lint - run: make lint + - name: golangci-lint + uses: golangci/golangci-lint-action@v9 + with: + version: v2.7 + +# - name: Lint +# run: make lint - name: Test run: make test