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 1659cf7 commit 3a1bbfeCopy full SHA for 3a1bbfe
1 file changed
.github/workflows/python_checks.yml
@@ -132,7 +132,7 @@ on:
132
required: false
133
type: string
134
default: true
135
- run_ruff:
+ run-ruff:
136
description: Flag to say if ruff should be run
137
138
@@ -188,7 +188,7 @@ jobs:
188
189
- name: Lint with ruff check
190
if: ${{ inputs.run-ruff == 'true' }}
191
- run: ruff check
+ run: ruff check --target-version py312
192
193
- name: Lint with pylint
194
if: inputs.pylint-packages != ''
@@ -291,6 +291,7 @@ jobs:
291
language: en_GB
292
293
- name: Lint with ruff
294
+ if: ${{ inputs.run-ruff == 'true' }}
295
run: ruff check
296
297
- name: Test with pytest
0 commit comments