Skip to content

Commit

Permalink
Run check-diff tests in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
benluiwj authored and ytmimi committed Aug 3, 2024
1 parent 63d50dd commit a1361bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion ci/build_and_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 7 additions & 1 deletion ci/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a1361bd

Please sign in to comment.