From f932c0ff651bda85f6d6083fb93af13db83986cf Mon Sep 17 00:00:00 2001 From: Gemini CLI Date: Thu, 15 Jan 2026 17:48:49 +0000 Subject: [PATCH] fix(ci): re-enable and update lint job 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. --- .github/workflows/ci.yml | 26 +++++++++++++------------- .golangci.yml | 1 - 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a03a5d..2b14060 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,19 +7,19 @@ on: branches: [ "main" ] jobs: -# lint: -# name: Lint -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v4 -# - uses: actions/setup-go@v5 -# with: -# go-version: '1.23' -# cache: false -# - name: golangci-lint -# uses: golangci/golangci-lint-action@v6 -# with: -# version: v2.8.0 + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: '1.23' + cache: false + - name: golangci-lint + uses: golangci/golangci-lint-action@v6 + with: + version: latest test: name: Test diff --git a/.golangci.yml b/.golangci.yml index ab0ce68..ee14cc5 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,5 +1,4 @@ # Options for analysis running. -version: 2 run: timeout: 5m