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
set -eu
if ! cargo clippy --all-targets -- -D warnings
then
if ! cargo clippy --all-targets -- -D warnings; then
echo "There are some clippy issues."
exit 1
fi
if ! cargo test
then
if ! cargo nextest run; then
echo "There are some test issues."
exit 1
fi