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,14 +1,12 @@
#!/bin/bash #!/bin/bash
set -eu set -eu
if ! cargo clippy --all-targets -- -D warnings if ! cargo clippy --all-targets -- -D warnings; then
then
echo "There are some clippy issues." echo "There are some clippy issues."
exit 1 exit 1
fi fi
if ! cargo test if ! cargo nextest run; then
then
echo "There are some test issues." echo "There are some test issues."
exit 1 exit 1
fi fi