👷 update ci
Some checks failed
Run Unit Tests / run-unit-tests (push) Failing after 4s

This commit is contained in:
DrMaxNix 2024-08-18 18:40:24 +02:00
parent 94afe107c5
commit f52a16c2ab

View File

@ -14,4 +14,12 @@ jobs:
- name: Fake Unit Test
run: |
[[ "$(cat ${{ gitea.workspace }}/testemulation | xargs)" -eq 0 ]]
testemulation=$(cat ${{ gitea.workspace }}/testemulation | xargs)
if [[ "$testemulation" -eq 0 ]]; do
echo "Emulated unit tests successful"
exit 0
else
echo "Emulated unit tests failed"
exit 1
fi