We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b8237 commit 6e7f0fbCopy full SHA for 6e7f0fb
ci/build_and_test.bat
@@ -13,7 +13,13 @@ if "%CFG_RELEASE_CHANNEL%"=="nightly" (
13
)
14
cargo test || exit /b 1
15
16
-:: Build and test other crates
+:: Build and test config_proc_macro
17
cd config_proc_macro || exit /b 1
18
cargo build --locked || exit /b 1
19
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
@@ -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
+# Build and test check_diff
26
27
+cd check_diff
28
+cargo build --locked
29
+cargo test
0 commit comments