From c1c697b1779f8ad8c4a7cdaeee4808ff8efe1174 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Thu, 3 Mar 2022 22:38:03 +0100 Subject: [PATCH] show error-logs on failure Signed-off-by: Steffen Jaeckel --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c29980d..2bb75e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,6 +34,10 @@ jobs: - name: Run tests run: | make check + - name: Error logs + if: ${{ failure() }} + run: | + cat test-suite.log || true libressl-tests: runs-on: ubuntu-20.04 @@ -64,6 +68,10 @@ jobs: - name: Run tests run: | make check + - name: Error logs + if: ${{ failure() }} + run: | + cat test-suite.log || true release-test: runs-on: ubuntu-20.04