We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57148d commit bbc5c60Copy full SHA for bbc5c60
CHANGELOG.md
@@ -13,6 +13,7 @@ Yeehaw 0.25
13
- remove legacy Makefile in favor of direct cargo commands.
14
- remove custom `rustfmt` configuration in favor of default formatting.
15
- run preflight script in CI via GitHub Action.
16
+- expand preflight script to run all workspace tests and doctests.
17
18
Yeehaw 0.24
19
================================
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