We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c088cc2 commit 5537499Copy full SHA for 5537499
.github/workflows/ci.yml
@@ -53,12 +53,12 @@ jobs:
53
shell: bash
54
run: |
55
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
56
- if [[ "$actual" != "${{ 3.13 }}" ]]; then
+ if [[ "$actual" != "${{ matrix.python }}" ]]; then
57
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
58
exit 1
59
fi
60
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
61
62
echo "Python version on PATH ($actual) does not match intended version (${{ matrix.python }})"
63
64
0 commit comments