Skip to content

Commit 0805659

Browse files
committed
fix?
1 parent 804d755 commit 0805659

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/lint-source.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ jobs:
3030

3131
- name: Lint the full source
3232
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'
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'
3736
3837
- name: No double precision intrinsics
3938
run: |

0 commit comments

Comments
 (0)