From 47a422a3cb5bf8626fb952eeacf59400522b6eb7 Mon Sep 17 00:00:00 2001 From: Florian Heft Date: Thu, 7 Apr 2022 21:04:27 +0200 Subject: [PATCH] Disable lint-go * go linting broke unexpectedly in Github actions early april 2022 without apparent reason. * To restore builds we disable go linting in CI for now. --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f0b398..8c3e2ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,11 @@ jobs: - run: npm install - - run: go get -u golang.org/x/lint/golint - - run: make lint + # NOTE: Disabled `lint-go` for now as it broke unexpectedly ("golint: Command not found") + #- run: go get -u golang.org/x/lint/golint + #- run: make lint + + - run: make lint-js test: needs: lint