Skip to content

Commit

Permalink
run the markdown crate's tests during rustfmt CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ytmimi committed Sep 12, 2023
1 parent a32eefb commit 173d9e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/build_and_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ cargo test || exit /b 1
cd config_proc_macro || exit /b 1
cargo build --locked || exit /b 1
cargo test || exit /b 1

cd ../markdown || exit /b 1
:: Build markdown crate and generate tests
cargo build --locked -F gen-tests || exit /b 1
cargo test || exit /b 1
5 changes: 5 additions & 0 deletions ci/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,8 @@ cargo test
cd config_proc_macro
cargo build --locked
cargo test

cd ../markdown
# Build markdown crate and generate tests
cargo build --locked -F gen-tests
cargo test

0 comments on commit 173d9e3

Please sign in to comment.