We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a7709 commit 928cf12Copy full SHA for 928cf12
.github/workflows/ci.yml
@@ -36,12 +36,12 @@ jobs:
36
shell: bash
37
run: |
38
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
39
- if [[ "$actual" != "${{ 3.12 }}" ]]; then
+ if [[ "$actual" != "${{ matrix.python }}" ]]; then
40
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
41
exit 1
42
fi
43
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
44
45
echo "Python version on $PATH ($actual) does not match intended version (${{ matrix.python }})"
46
47
0 commit comments