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.
2 parents 7e3e3ff + 3857768 commit e6b603cCopy full SHA for e6b603c
.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- python-version: ["3.9", "3.13"]
+ python-version: ["3.9", "3.13", "3.14"]
16
steps:
17
18
- name: Checkout Repository
.github/workflows/test.yml
@@ -8,15 +8,18 @@ on:
8
jobs:
9
build_and_test:
10
11
+ strategy:
+ matrix:
+ python-version: ["3.9", "3.12", "3.14"]
uses: actions/checkout@v4
- - name: Set up Python 3.12
19
+ - name: Set up Python ${{ matrix.python-version }}
20
uses: actions/setup-python@v5
21
with:
- python-version: 3.12
22
+ python-version: ${{ matrix.python-version }}
23
24
- name: Run build
25
run: |
0 commit comments