Skip to content

Commit

Permalink
Fix ruff checks (#10)
Browse files Browse the repository at this point in the history
The signature of ruff call changed in recent version from

ruff <path>

to

russ check <path>

This makes respective change in the CI file
  • Loading branch information
zhmurov authored Aug 26, 2024
1 parent 75d4320 commit 8f5e49b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ testing:
run: "run_script"
args:
origin: ${{ global.temp_dir }}
script: "python -m ruff --config=pyproject.toml ${{ task.task_sub_path }}"
script: "python -m ruff check --config=pyproject.toml ${{ task.task_sub_path }}"

- name: "Run typechecker"
run_if: ${{ parameters.run_typechecking }}
Expand Down

0 comments on commit 8f5e49b

Please sign in to comment.