diff --git a/.gitea/workflows/check-go.yml b/.gitea/workflows/check-go.yml index 293c07f..ea1c920 100644 --- a/.gitea/workflows/check-go.yml +++ b/.gitea/workflows/check-go.yml @@ -30,3 +30,22 @@ jobs: - name: Run tests run: go test ./... + + + lint: + name: Lint + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: '1.25.x' + + - name: Run golangci-lint + uses: golangci/golangci-lint-action@v8 + with: + version: 'v2.4'