From dec55994239a5442b5bb70d3c167937161caaecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Polack?= Date: Tue, 12 Dec 2023 15:36:39 +0100 Subject: [PATCH] testing failing ci --- .github/workflows/regression.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/regression.yaml b/.github/workflows/regression.yaml index b192e91667..8e8e843726 100644 --- a/.github/workflows/regression.yaml +++ b/.github/workflows/regression.yaml @@ -50,3 +50,9 @@ jobs: BenchmarkCI.postjudge()' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Is report successful + run: | + res=$(julia --project=benchmark -e ' + using BenchmarkCI + BenchmarkCI.displayjudgement()' | grep --count ':x:') + if [[ $res -gt 1 ]]; then exit 1; fi