We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5c427 commit b744fe3Copy full SHA for b744fe3
.github/workflows/test.yml
@@ -13,14 +13,24 @@ env:
13
jobs:
14
integration:
15
name: Integration test
16
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ python-version:
21
+ - "3.13"
22
+ - "3.14"
23
+ os: [windows-latest, macos-latest, ubuntu-latest]
24
steps:
25
- uses: actions/checkout@v4
26
with:
27
persist-credentials: false
- - uses: actions/setup-python@v5
28
+
29
+ - name: Set up Python ${{ matrix.python-version }}
30
+ uses: actions/setup-python@v5
31
- python-version: "3.13"
32
+ python-version: ${{ matrix.python-version }}
33
+ allow-prereleases: true
34
35
- name: Set up requirements
36
run: |
0 commit comments