-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move linters to github actions #3289
Conversation
f69007c
to
23079e3
Compare
Is it possible to prevent tests from running until the linter passes? i.e. don't waste time on tests if linting fails? |
Undesirable – at best, you then need to wait for the linter to run and pass again before knowing what tests failed. There's no issue with wasting time. |
69f9bfc
to
a022219
Compare
@simonwo @aronchick everything's passing now, but it's still waiting for the old 'lint' check which is never going to run. Is it possible for you to remove it from the list in settings please as I don't have access. |
9b9042c
to
75a383f
Compare
75a383f
to
a9da994
Compare
Moves the precommit linters to github actions to free up a little space in CircleCI.
We also remove
go vet
as it's already part of golangci-lint.Fixes #3288