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 3b314f9 commit 85e2e0cCopy full SHA for 85e2e0c
.github/workflows/build_workflow.yml
@@ -14,6 +14,8 @@ on:
14
env:
15
CANCEL_OTHERS: false
16
PATHS_IGNORE: '["**/README.md", "**/docs/**"]'
17
+ # Static python version for setting up pre-commit linting
18
+ PYTHON_VERSION: "3.13"
19
20
jobs:
21
pre-commit-hooks:
@@ -32,10 +34,10 @@ jobs:
32
34
uses: actions/checkout@v4
33
35
36
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
- name: Set up Python 3.10
37
+ name: Set up Python ${{ env.PYTHON_VERSION }}
38
uses: actions/setup-python@v5
39
with:
- python-version: "3.10"
40
+ python-version: ${{ env.PYTHON_VERSION }}
41
42
43
id: file_changes
0 commit comments