Skip to content

Commit 6e7f0fb

Browse files
benluiwjytmimi
authored andcommitted
Run check-diff tests in ci
1 parent e0b8237 commit 6e7f0fb

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

ci/build_and_test.bat

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ if "%CFG_RELEASE_CHANNEL%"=="nightly" (
1313
)
1414
cargo test || exit /b 1
1515

16-
:: Build and test other crates
16+
:: Build and test config_proc_macro
1717
cd config_proc_macro || exit /b 1
1818
cargo build --locked || exit /b 1
1919
cargo test || exit /b 1
20+
21+
:: Build and test check_diff
22+
cd ..
23+
cd check_diff || exit /b 1
24+
cargo build --locked || exit /b 1
25+
cargo test || exit /b 1

ci/build_and_test.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ else
1717
fi
1818
cargo test
1919

20-
# Build and test other crates
20+
# Build and test config_proc_macro
2121
cd config_proc_macro
2222
cargo build --locked
2323
cargo test
24+
25+
# Build and test check_diff
26+
cd ..
27+
cd check_diff
28+
cargo build --locked
29+
cargo test

0 commit comments

Comments
 (0)