You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
True, this was not pull request event, that was just push.
But every time I make push I need to know all errors linter gives me as well as during pull request.
Hi,
My github action yml is simple:
name: reviewdog
on: [push, pull_request]
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
fail_on_error: true
In Github actions I see the result:
But test looks as passed - it's green
I need to notify user that linter catch the error and commit is bad.
How can I make it Red?
The text was updated successfully, but these errors were encountered: