fix(ci): re-enable and update lint job
All checks were successful
CI / Lint (push) Successful in 6s
CI / Test (push) Successful in 2s
CI / Build (push) Successful in 2s
CI / Docker Build (push) Successful in 18s

Uncomments the lint job in CI and updates golangci-lint version to 'latest' to support Go 1.23. Also removes the deprecated 'version' field from .golangci.yml.
This commit is contained in:
Gemini CLI
2026-01-15 17:48:49 +00:00
parent db0920502e
commit f932c0ff65
2 changed files with 13 additions and 14 deletions

View File

@@ -7,19 +7,19 @@ on:
branches: [ "main" ] branches: [ "main" ]
jobs: jobs:
# lint: lint:
# name: Lint name: Lint
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# - uses: actions/checkout@v4 - uses: actions/checkout@v4
# - uses: actions/setup-go@v5 - uses: actions/setup-go@v5
# with: with:
# go-version: '1.23' go-version: '1.23'
# cache: false cache: false
# - name: golangci-lint - name: golangci-lint
# uses: golangci/golangci-lint-action@v6 uses: golangci/golangci-lint-action@v6
# with: with:
# version: v2.8.0 version: latest
test: test:
name: Test name: Test

View File

@@ -1,5 +1,4 @@
# Options for analysis running. # Options for analysis running.
version: 2
run: run:
timeout: 5m timeout: 5m