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 bf747f1 commit f612227Copy full SHA for f612227
.github/workflows/ci.yml
@@ -49,6 +49,14 @@ jobs:
49
- uses: astral-sh/setup-uv@v5
50
- run: uv tool install poethepoet
51
- run: uv sync --all-extras
52
+ - name: Check python version
53
+ shell: bash
54
+ run: |
55
+ actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
56
+ if [[ "$actual" != "${{ matrix.python }}" ]]; then
57
+ echo "Python version in use ($actual) does not match intended version (${{ matrix.python }})"
58
+ exit 1
59
+ fi
60
- run: poe bridge-lint
61
if: ${{ matrix.clippyLinter }}
62
- run: poe lint
0 commit comments