grep for todo! and dbg! in check_commands and in CI #12

Merged
jturnerusa merged 6 commits from feature/add-grep-for-dbg-and-todo-to-ci into master 2025-12-13 22:39:17 -06:00
2 changed files with 15 additions and 0 deletions
Showing only changes of commit 673657258a - Show all commits

View File

@@ -153,3 +153,17 @@ jobs:
run: |
meson setup -Ddocs=enabled docs
ninja rustdoc -C docs
grep:
runs-on: brutalisk
needs: [build-oci-image]
container:
image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }}
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: grep for patterns
run: |
egrep 'todo!|dbg!' -qvr src

View File

@@ -3,3 +3,4 @@ ninja rustfmt -C build
ninja rustdoc -C build
ninja clippy -C build
ninja test -C build
egrep 'todo!|dbg!' -qvr src