-
Notifications
You must be signed in to change notification settings - Fork 45
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
Does bedrock2 want warning/error annotations on PRs? #149
Comments
Fancy... 😂 At the moment, building bedrock2 outputs 147 warnings, does that mean each PR would get 147 such annotations? |
Yes, it does :-D (Great motivation to fix the warnings, no?) You could also modify it to only annotate errors and not warnings, though. |
I see 😅 Annotated errors would be cool 😃 Would that require building the whole project on GitHub Actions? Before you can start building the |
We're using this .json file: {
"problemMatcher": [
{
"owner": "coq-problem-matcher",
"pattern": [
{
"regexp": "^File \"([^ \"]+)\", line (\\d+), characters (\\d+-\\d+):",
"file": 1,
"line": 2,
"column": 3
},
{
"regexp": "^(Warning|Error): (.*?)(?:\\s*\\[(.*)\\])?$",
"severity": 1,
"message": 2,
"code": 3
}
]
}
]
} You can make it match only errors by removing the Then, yes, you need to build the whole project in GitHub Actions, and you want to
before running |
(This is from fiat-crypto.)
c.f. mit-plv/fiat-crypto#703
The text was updated successfully, but these errors were encountered: