Skip to content

Commit 7712975

Browse files
committed
feat: add ruff tests
1 parent 2b73a2c commit 7712975

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,16 @@ jobs:
301301
run: |
302302
black . --check --diff --color
303303
304+
- name: Install ruff
305+
if: steps.check_python.outputs.files_exists == 'true'
306+
run: |
307+
pip3 install --disable-pip-version-check ruff
308+
309+
- name: Run ruff
310+
if: steps.check_python.outputs.files_exists == 'true'
311+
run: |
312+
ruff check .
313+
304314
ansible:
305315
name: Ansible
306316
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)