added logger-app test into logger-test workflow

This commit is contained in:
Václav Šmejkal 2023-02-08 19:46:26 +01:00
parent b57cd2b827
commit c0046f6501
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -35,6 +35,7 @@ jobs:
output: ./out/why2-logger-test
configure: configure.sh
valgrind: valgrind --leak-check=full --show-leak-kinds=reachable --track-origins=yes -s
app: why2-logger
steps:
- name: Checkout repository
@ -66,5 +67,8 @@ jobs:
- name: Test Lib
run: ./${{ matrix.output }}
- name: Test App
run: ${{ matrix.app }}
- name: Test Lib by Valgrind
run: ${{ matrix.valgrind }} ${{ matrix.output }}