Skip to content

Commit f445fee

Browse files
committed
run the markdown crate's tests during rustfmt CI
1 parent 079c3af commit f445fee

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

ci/build_and_test.bat

+5
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ cargo test || exit /b 1
1717
cd config_proc_macro || exit /b 1
1818
cargo build --locked || exit /b 1
1919
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

+5
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,8 @@ cargo test
2121
cd config_proc_macro
2222
cargo build --locked
2323
cargo test
24+
25+
cd ../markdown
26+
# Build markdown crate and generate tests
27+
cargo build --locked -F gen-tests
28+
cargo test

0 commit comments

Comments
 (0)