1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2024-11-29 00:24:11 +01:00

ci: always end tests with displaying logs

This commit is contained in:
Klas Lindfors 2021-04-06 14:02:33 +02:00
parent 6c95950515
commit 371d6048fe
No known key found for this signature in database
GPG Key ID: BCA00FD4B2168C0A

View File

@ -61,3 +61,10 @@ jobs:
MYSQL_PORT: ${{ job.services.mariadb.ports[3306] }}
run: |
tests/aux/build-and-test.sh
- name: Display logs
if: ${{ always() }}
run: |
for log in tests/*.log; do
echo $log
cat $log
done