ci: use nextest (#148)

* ci: use nextest

* add doctests back
This commit is contained in:
Nugine
2025-07-10 11:33:12 +08:00
committed by GitHub
parent 363e37c791
commit a3b5445824
3 changed files with 8 additions and 2 deletions

View File

@@ -31,7 +31,8 @@ check:
.PHONY: test
test:
@echo "🧪 Running tests..."
cargo test --all --exclude e2e_test
cargo nextest run --all --exclude e2e_test
cargo test --all --doc
.PHONY: pre-commit
pre-commit: fmt clippy check test