diff options
| author | Deadbeef <ent3rm4n@gmail.com> | 2022-12-23 14:59:42 +0000 |
|---|---|---|
| committer | Deadbeef <ent3rm4n@gmail.com> | 2023-03-06 07:13:48 +0000 |
| commit | ef807cb321604ae96ed0f78c78e3e9348d6d11ba (patch) | |
| tree | e6327c046388f781d43267f3b26007155b063001 /src/ci/github-actions | |
| parent | 35636f9459720513ca4ed19373a4a7c9e0ea3c46 (diff) | |
| download | rust-ef807cb321604ae96ed0f78c78e3e9348d6d11ba.tar.gz rust-ef807cb321604ae96ed0f78c78e3e9348d6d11ba.zip | |
use problem matchers for tidy CI
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/problem_matchers.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ci/github-actions/problem_matchers.json b/src/ci/github-actions/problem_matchers.json new file mode 100644 index 00000000000..37561924b7d --- /dev/null +++ b/src/ci/github-actions/problem_matchers.json @@ -0,0 +1,15 @@ +{ + "problemMatcher": [ + { + "owner": "tidy-error-file-line", + "pattern": [ + { + "regexp": "^tidy error: /checkout/(.+):(\\d+): (.+)$", + "file": 1, + "line": 2, + "message": 3 + } + ] + } + ] +} |
