File tree 1 file changed +0
-13
lines changed
1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 32
32
python-version : ${{ matrix.python }}
33
33
- run : uv tool install poethepoet
34
34
- run : uv sync --group=dsl --group=encryption --group=trio-async --python ${{ matrix.python }}
35
- - name : Check python version
36
- shell : bash
37
- run : |
38
- actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
39
- 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
- if [[ "$actual" != "${{ matrix.python }}" ]]; then
45
- echo "Python version on $PATH ($actual) does not match intended version (${{ matrix.python }})"
46
- exit 1
47
- fi
48
35
- run : poe lint
49
36
- run : mkdir junit-xml
50
37
- run : poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}.xml
You can’t perform that action at this time.
0 commit comments