Run check-diff tests in ci
This commit is contained in:
parent
63d50dd1d7
commit
a1361bd0d5
@ -13,7 +13,13 @@ if "%CFG_RELEASE_CHANNEL%"=="nightly" (
|
|||||||
)
|
)
|
||||||
cargo test || exit /b 1
|
cargo test || exit /b 1
|
||||||
|
|
||||||
:: Build and test other crates
|
:: Build and test config_proc_macro
|
||||||
cd config_proc_macro || exit /b 1
|
cd config_proc_macro || exit /b 1
|
||||||
cargo build --locked || exit /b 1
|
cargo build --locked || exit /b 1
|
||||||
cargo test || 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
|
||||||
|
@ -17,7 +17,13 @@ else
|
|||||||
fi
|
fi
|
||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
# Build and test other crates
|
# Build and test config_proc_macro
|
||||||
cd config_proc_macro
|
cd config_proc_macro
|
||||||
cargo build --locked
|
cargo build --locked
|
||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
|
# Build and test check_diff
|
||||||
|
cd ..
|
||||||
|
cd check_diff
|
||||||
|
cargo build --locked
|
||||||
|
cargo test
|
||||||
|
Loading…
Reference in New Issue
Block a user