Skip to content

Commit cb289a9

Browse files
committed
enter venv
1 parent 30336d1 commit cb289a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lint-source.yml

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

3131
- name: Lint the full source
3232
run: |
33-
pip install fortitude ansi2txt
34-
find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \;
35-
find ./src -type f -not -name '*nvtx*' -exec fortitude check {} \; | wc -l | xargs -I{} sh -c '[ {} -gt 0 ] && exit 1 || exit 0'
33+
source build/venv/bin/activate
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'
3636
3737
- name: No double precision intrinsics
3838
run: |

0 commit comments

Comments
 (0)