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