We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe6fc2 commit e4eace7Copy full SHA for e4eace7
.github/workflows/minimal-ci.yml
@@ -52,6 +52,15 @@ jobs:
52
- name: "Check clippy"
53
run: cargo clippy --workspace --features ${GDRUST_FEATURES} -- -D clippy::style -D clippy::complexity -D clippy::perf -D clippy::dbg_macro -D clippy::todo -D clippy::unimplemented
54
55
+ check-todo:
56
+ runs-on: ubuntu-latest
57
+ steps:
58
+ - uses: actions/checkout@v3
59
+ - name: "Install ripgrep"
60
+ run: "sudo apt-get update && sudo apt-get install ripgrep"
61
+ - name: "Look for TODO comments without issue numbers attached to them"
62
+ run: "! rg -iTh --pcre2 '(?<!clippy::)(TODO|FIXME)(?!!\\(\\)|\\((#|(\\w+/)+)\\d+\\))'""
63
+
64
unit-test:
65
runs-on: ubuntu-latest
66
steps:
0 commit comments