show error-logs on failure

Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
This commit is contained in:
Steffen Jaeckel
2022-03-03 22:38:03 +01:00
parent 808a981e86
commit c1c697b177

View File

@@ -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