forked from mit-plv/fiat-crypto
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First stab at anontating source files with Coq warnings and errors
Add coq matcher in actions As per https://github.com/actions/toolkit/blob/master/docs/commands.md#problem-matchers h/t actions/setup-go#46 (comment) for pointing out that this is possible
- Loading branch information
1 parent
e77b92a
commit fa77083
Showing
4 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"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 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters