fixup
Some checks failed
Gentoo Utils / build-oci-image (push) Successful in 6s
Gentoo Utils / grep (push) Failing after 3s
Gentoo Utils / check-format (push) Successful in 8s
Gentoo Utils / docs (push) Successful in 13s
Gentoo Utils / build (push) Successful in 21s
Gentoo Utils / test (push) Successful in 32s

This commit is contained in:
2025-12-14 04:34:28 +00:00
parent 8f3b07f6c9
commit 87d02f1b3d
2 changed files with 2 additions and 7 deletions

View File

@@ -165,9 +165,4 @@ jobs:
- name: grep for patterns
run: |
if git grep -e 'dbg!|todo!' -- '*.rs'; then
false
else
true
fi
git grep 'todo!|dbg!' -- '*.rs' && exit 1

View File

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