File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,6 @@ jobs:
118
118
uses : ./
119
119
- run : uv tool install ruff
120
120
- run : ruff --version
121
-
122
121
test-tilde-expansion-tool-dirs :
123
122
runs-on : selfhosted-ubuntu-arm64
124
123
steps :
@@ -138,4 +137,21 @@ jobs:
138
137
echo "UV_TOOL_DIR does not contain /home/ubuntu/tool-dir: $UV_TOOL_DIR"
139
138
exit 1
140
139
fi
141
-
140
+ test-python-version :
141
+ runs-on : ubuntu-latest
142
+ strategy :
143
+ matrix :
144
+ python-version : ["3.12", "3.13t"]
145
+ steps :
146
+ - uses : actions/checkout@v4
147
+ - name : Install latest version
148
+ uses : ./
149
+ with :
150
+ python-version : ${{ matrix.python-version }}
151
+ - name : Verify UV_PYTHON is set to correct version
152
+ run : |
153
+ if [ "$UV_PYTHON" != "${{ matrix.python-version }}" ]; then
154
+ exit 1
155
+ fi
156
+ - run : uv sync
157
+ working-directory : __tests__/fixtures/uv-project
You can’t perform that action at this time.
0 commit comments