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