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 0805659 commit 30336d1Copy full SHA for 30336d1
.github/workflows/lint-source.yml
@@ -31,8 +31,8 @@ jobs:
31
- name: Lint the full source
32
run: |
33
pip install fortitude ansi2txt
34
- find ./src -type f -not -name '*nvtx*' -exec command fortitude check {} \;
35
- find ./src -type f -not -name '*nvtx*' -exec command fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
+ find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \;
+ find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
36
37
- name: No double precision intrinsics
38
0 commit comments