We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db87520 commit 94a5a46Copy full SHA for 94a5a46
1 file changed
.github/workflows/lint.yml
@@ -1,6 +1,9 @@
1
name: Python SDK Lint
2
on: [push, workflow_dispatch]
3
4
+env:
5
+ PYTHON_VERSION: 3.9
6
+
7
jobs:
8
lint:
9
runs-on: ubuntu-latest
@@ -13,4 +16,4 @@ jobs:
13
16
- name: Verify uv.lock is up-to-date
14
17
run: uv lock --check
15
18
- name: Verify against basedpyright baseline
- run: uv run --frozen basedpyright
19
+ run: uv run --frozen basedpyright --pythonversion ${{ env.PYTHON_VERSION }}
0 commit comments