fixup
All checks were successful
Gentoo Utils / build-oci-image (push) Successful in 7s
Gentoo Utils / grep (push) Successful in 2s
Gentoo Utils / check-format (push) Successful in 7s
Gentoo Utils / docs (push) Successful in 12s
Gentoo Utils / build (push) Successful in 19s
Gentoo Utils / test (push) Successful in 25s

This commit is contained in:
2025-12-14 04:28:52 +00:00
parent 673657258a
commit 5235e7d5a5
2 changed files with 6 additions and 2 deletions

View File

@@ -165,5 +165,9 @@ jobs:
- name: grep for patterns
run: |
egrep 'todo!|dbg!' -qvr src
if git grep -e 'dbg!' -- '*.rs'; then
false
else
true
fi

View File

@@ -3,4 +3,4 @@ ninja rustfmt -C build
ninja rustdoc -C build
ninja clippy -C build
ninja test -C build
egrep 'todo!|dbg!' -qvr src
if git grep -e 'dbg!' -- '*.rs'; then false; else true; fi