Skip to content

Commit

Permalink
Disable lint-go
Browse files Browse the repository at this point in the history
* go linting broke unexpectedly in Github actions
  early april 2022 without apparent reason.
* To restore builds we disable go linting
  in CI for now.
  • Loading branch information
fheft committed Apr 7, 2022
1 parent 944b1aa commit 47a422a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 47a422a

Please sign in to comment.