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 f89317b commit 30c5414Copy full SHA for 30c5414
.github/workflows/test.yml
@@ -13,22 +13,14 @@ env:
13
jobs:
14
integration:
15
name: Integration test
16
- runs-on: ${{ matrix.os }}
17
- strategy:
18
- fail-fast: false
19
- matrix:
20
- python-version: ["3.13", "3.14"]
21
- os: [windows-latest, macos-latest, ubuntu-latest]
+ runs-on: ubuntu-latest
22
steps:
23
- uses: actions/checkout@v4
24
with:
25
persist-credentials: false
26
-
27
- - name: Set up Python ${{ matrix.python-version }}
28
- uses: actions/setup-python@v5
+ - uses: actions/setup-python@v5
29
30
- python-version: ${{ matrix.python-version }}
31
- allow-prereleases: true
+ python-version: "3.13"
32
33
- name: Set up requirements
34
run: |
0 commit comments