Skip to content

Commit c408eae

Browse files
committed
chore(ci): cleanup workflows and add windows and macos
1 parent 56540c9 commit c408eae

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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]
@@ -32,6 +32,8 @@ jobs:
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
@@ -41,7 +43,9 @@ jobs:
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

0 commit comments

Comments
 (0)