1 Commits

Author SHA1 Message Date
c62ff3ac28 grep for todo! and dbg! in check_commands and in CI
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 7s
Gentoo Utils / docs (push) Successful in 12s
Gentoo Utils / build (push) Successful in 19s
Gentoo Utils / test (push) Successful in 26s
2025-12-14 04:06:30 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -165,5 +165,5 @@ jobs:
- name: grep for patterns
run: |
egrep 'todo!|dbg!' -qvr src
git grep 'todo!|dbg!' && exit 1

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
egrep 'todo!|dbg!' $(find src -type f -name '*.rs') && return 1