File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1818 - uses : pre-commit/action@v2.0.0
1919
2020 tests :
21- name : Test / ${{ matrix.python-version }} / ${{ matrix.os }}
21+ name : ${{ matrix.os }} / ${{ matrix.python-version }}
2222 runs-on : ${{ matrix.os }}-latest
2323 continue-on-error : ${{ matrix.experimental }}
2424 needs : [pre-commit]
3232 steps :
3333 - uses : actions/checkout@v4
3434 - uses : actions/setup-go@v5
35+ with :
36+ go-version : ' ^1.23.0'
3537
3638 - name : Set up Python ${{ matrix.python-version }}
3739 uses : actions/setup-python@v5
4143 - name : Get full python version
4244 id : full-python-version
4345 shell : bash
44- run : echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
46+ run : |
47+ VERSION=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
48+ echo "{version}=${VERSION}" >> $GITHUB_OUTPUT
4549
4650 - name : Install poetry
4751 shell : bash
You can’t perform that action at this time.
0 commit comments