Skip to content

Commit e7b3794

Browse files
committed
Deliberate failure
1 parent f54e078 commit e7b3794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
shell: bash
3535
run: |
3636
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
37-
if [[ "$actual" != "${{ matrix.python }}" ]]; then
37+
if [[ "$actual" != "${{ 3.12 }}" ]]; then
3838
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
3939
exit 1
4040
fi
4141
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
42-
if [[ "$actual" != "${{ matrix.python }}" ]]; then
42+
if [[ "$actual" != "${{ 3.12 }}" ]]; then
4343
echo "Python version on $PATH ($actual) does not match intended version (${{ matrix.python }})"
4444
exit 1
4545
fi

0 commit comments

Comments
 (0)