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 596530b commit dfc8313Copy full SHA for dfc8313
.github/actions/create-lint-wf/action.yml
@@ -35,9 +35,11 @@ runs:
35
working-directory: create-lint-wf
36
37
# Run code style linting
38
- - name: run pre-commit rules
+ - name: install prek & run pre-commit rules
39
shell: bash
40
- run: prek run --all-files
+ run: |
41
+ pip install prek
42
+ prek run --all-files
43
44
45
# Update modules to the latest version
.github/workflows/create-test-lint-wf-template.yml
@@ -147,7 +147,9 @@ jobs:
147
148
149
- name: Run pre-commit
150
151
152
153
working-directory: create-test-lint-wf
154
155
# Remove TODO statements
0 commit comments