chore: updates #47

Merged
pitbuster merged 3 commits from updates into main 2025-03-08 13:48:07 -03:00
Showing only changes of commit 3751740489 - Show all commits

View file

@ -1,16 +1,14 @@
#!/bin/bash
set -eu
if ! cargo clippy --all-targets -- -D warnings
then
echo "There are some clippy issues."
exit 1
if ! cargo clippy --all-targets -- -D warnings; then
echo "There are some clippy issues."
exit 1
fi
if ! cargo test
then
echo "There are some test issues."
exit 1
if ! cargo nextest run; then
echo "There are some test issues."
exit 1
fi
exit 0