Skip to content

Commit 928cf12

Browse files
committed
Revert "Deliberate failure"
This reverts commit e7b3794.
1 parent 89a7709 commit 928cf12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
shell: bash
3737
run: |
3838
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
39-
if [[ "$actual" != "${{ 3.12 }}" ]]; then
39+
if [[ "$actual" != "${{ matrix.python }}" ]]; then
4040
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
4141
exit 1
4242
fi
4343
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
44-
if [[ "$actual" != "${{ 3.12 }}" ]]; then
44+
if [[ "$actual" != "${{ matrix.python }}" ]]; then
4545
echo "Python version on $PATH ($actual) does not match intended version (${{ matrix.python }})"
4646
exit 1
4747
fi

0 commit comments

Comments
 (0)