From be2921064a1b5be122a9dcc21b126477fce5c46a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 17 Jan 2025 22:40:56 +0000 Subject: [PATCH] temporarily disable staticcheck It's not crucial for CI to work, and go1.24.0 is around the corner. --- .github/workflows/test.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba772e3..b50dba0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,11 +63,12 @@ jobs: run: diff <(echo -n) <(gofmt -d .) - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' run: go vet ./... - - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' - uses: dominikh/staticcheck-action@v1 - with: - version: "2024.1.1" - install-go: false + # TODO: staticcheck temporarily disabled as it was built with go1.23.4 + # - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' + # uses: dominikh/staticcheck-action@v1 + # with: + # version: "2024.1.1" + # install-go: false # We don't care about GOARCH=386 particularly, hence -short, # but it helps ensure we support 32-bit hosts and targets well.