File tree Expand file tree Collapse file tree 2 files changed +4
-88
lines changed
Expand file tree Collapse file tree 2 files changed +4
-88
lines changed Original file line number Diff line number Diff line change @@ -56,17 +56,17 @@ if [ ! -z "$RUST_FILES" ]; then
5656 AFFECTED_CRATES=$( echo $AFFECTED_CRATES | tr ' ' ' \n' | sort -u | tr ' \n' ' ' )
5757
5858 for crate in $AFFECTED_CRATES ; do
59- echo -e " ${YELLOW} 🔍 Checking crate: code-guardian- $crate ${NC} "
60- cargo clippy -p code-guardian- $crate --quiet -- -D warnings || {
59+ echo -e " ${YELLOW} 🔍 Checking crate: code_guardian_ $crate ${NC} "
60+ cargo clippy -p code_guardian_ $crate --quiet -- -D warnings || {
6161 echo -e " ${RED} ❌ Clippy failed for crate: $crate ${NC} "
6262 exit 1
6363 }
6464 done
6565
6666 echo -e " ${YELLOW} 🧪 Running tests for affected crates...${NC} "
6767 for crate in $AFFECTED_CRATES ; do
68- echo -e " ${YELLOW} 🧪 Testing crate: code-guardian- $crate ${NC} "
69- cargo test -p code-guardian- $crate --quiet || {
68+ echo -e " ${YELLOW} 🧪 Testing crate: code_guardian_ $crate ${NC} "
69+ cargo test -p code_guardian_ $crate --quiet || {
7070 echo -e " ${RED} ❌ Tests failed for crate: $crate ${NC} "
7171 exit 1
7272 }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments