From 1a7e265421861f1dae5a2a8d212db26cc8bb7835 Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Tue, 21 Jan 2020 18:16:04 +0100 Subject: [PATCH] Fix cargo-fmt problem matcher Turns out that it doesn't work because it only accepts single digit lines. --- .github/rust.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/rust.json b/.github/rust.json index 2a3504c..424c540 100644 --- a/.github/rust.json +++ b/.github/rust.json @@ -33,7 +33,7 @@ "owner": "cargo-fmt", "pattern": [ { - "regexp": "^(Diff in (\\S+)) at line (\\d):", + "regexp": "^(Diff in (\\S+)) at line (\\d+):", "message": 1, "file": 2, "line": 3 @@ -41,4 +41,4 @@ ] } ] -} \ No newline at end of file +}