We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c8cec8e + bbc5c60 commit a933bdfCopy full SHA for a933bdf
CHANGELOG.md
@@ -15,6 +15,7 @@ Yeehaw 0.25
15
- remove legacy Makefile in favor of direct cargo commands.
16
- remove custom `rustfmt` configuration in favor of default formatting.
17
- run preflight script in CI via GitHub Action.
18
+- expand preflight script to run all workspace tests and doctests.
19
20
Yeehaw 0.24
21
================================
scripts/preflight.sh
@@ -2,4 +2,5 @@
2
set -euo pipefail
3
4
cargo fmt --all -- --check
5
-cargo test --tests --lib
+cargo test --workspace --all-features
6
+cargo test --doc --workspace --all-features
0 commit comments