We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ffee18 commit 11a9804Copy full SHA for 11a9804
1 file changed
.github/workflows/prerelease.yml
@@ -14,12 +14,19 @@ permissions:
14
15
jobs:
16
test:
17
- name: Test
+ name: ${{ matrix.runner }} / Python ${{ matrix.python-version }}
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ python-version: ["3.11", "3.12", "3.13", "3.14"]
22
+ runner: [macos-latest, ubuntu-latest, windows-latest]
23
+ architecture: [x64]
24
uses: ./.github/workflows/test.yml
25
with:
- python-version: "3.13"
- runner: ubuntu-latest
- build-distribution: true
26
+ python-version: ${{ matrix.python-version }}
27
+ runner: ${{ matrix.runner }}
28
+ architecture: ${{ matrix.architecture }}
29
+ build-distribution: ${{ matrix.runner == 'ubuntu-latest' && matrix.python-version == '3.13' }}
30
31
prerelease:
32
name: Prerelease to PyPI
0 commit comments