We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079c3af commit f445feeCopy full SHA for f445fee
ci/build_and_test.bat
@@ -17,3 +17,8 @@ cargo test || exit /b 1
17
cd config_proc_macro || exit /b 1
18
cargo build --locked || exit /b 1
19
cargo test || exit /b 1
20
+
21
+cd ../markdown || exit /b 1
22
+:: Build markdown crate and generate tests
23
+cargo build --locked -F gen-tests || exit /b 1
24
+cargo test || exit /b 1
ci/build_and_test.sh
@@ -21,3 +21,8 @@ cargo test
cd config_proc_macro
cargo build --locked
cargo test
25
+cd ../markdown
26
+# Build markdown crate and generate tests
27
+cargo build --locked -F gen-tests
28
+cargo test
0 commit comments