Run check-diff tests in ci

This commit is contained in:
benluiwj 2024-07-20 15:54:03 +08:00 committed by Yacin Tmimi
parent 63d50dd1d7
commit a1361bd0d5
2 changed files with 14 additions and 2 deletions

View File

@ -13,7 +13,13 @@ if "%CFG_RELEASE_CHANNEL%"=="nightly" (
)
cargo test || exit /b 1
:: Build and test other crates
:: Build and test config_proc_macro
cd config_proc_macro || exit /b 1
cargo build --locked || exit /b 1
cargo test || exit /b 1
:: Build and test check_diff
cd ..
cd check_diff || exit /b 1
cargo build --locked || exit /b 1
cargo test || exit /b 1

View File

@ -17,7 +17,13 @@ else
fi
cargo test
# Build and test other crates
# Build and test config_proc_macro
cd config_proc_macro
cargo build --locked
cargo test
# Build and test check_diff
cd ..
cd check_diff
cargo build --locked
cargo test