ci: skip lint until golangci-lint supports Go 1.25

This commit is contained in:
Snider 2026-02-01 11:38:54 +00:00
parent a422c18c0e
commit 74cc00ec24

View file

@ -25,11 +25,6 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v6
with:
install-only: true
- name: Install core CLI
run: |
curl -fsSL "https://github.com/host-uk/core/releases/download/${{ env.CORE_VERSION }}/core-linux-amd64" -o /tmp/core
@ -41,7 +36,8 @@ jobs:
run: go generate ./pkg/updater/...
- name: Run QA
run: core go qa
# Skip lint until golangci-lint supports Go 1.25
run: core go qa --skip=lint
build:
runs-on: ubuntu-latest