check for nextest before running tests
Some checks failed
Backend Actions / test (push) Failing after 1m43s
Backend Actions / build (push) Successful in 2m2s
Backend Actions / check (push) Successful in 39s

This commit is contained in:
2025-07-24 17:42:31 +01:00
parent 346d7b8bcd
commit e90ffabf8b

View File

@ -1,5 +1,11 @@
#!/usr/bin/env bash
if [ ! $(command -v cargo-nextest 2>&1 > /dev/null ) ]; then
echo "Command not found cargo-nextest"
echo "Try installing with cargo install cargo-nextest"
exit 1
fi
if [ ! -d logs ]; then
mkdir logs
fi