From ebdf58404fa19ee5a205a4be18f3472d5defcd2a Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Thu, 28 Oct 2021 11:07:16 +0200 Subject: [PATCH] CI: Don't retry tests in case of errors. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa6455a..b1b8710 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,11 +40,11 @@ jobs: - name: Run tests run: | - make test || make test + make test - name: Generate coverage report run: | - make cover || make cover + make cover - name: Convert coverage to lcov uses: jandelgado/gcov2lcov-action@v1.0.8