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 9462a0b commit bfcf0f6Copy full SHA for bfcf0f6
1 file changed
.github/workflows/build.yml
@@ -10,13 +10,18 @@ env:
10
jobs:
11
build:
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python-version:
16
+ - '3.9'
17
+ - '3.13'
18
steps:
19
- uses: actions/checkout@v4
20
with:
21
persist-credentials: false
22
- name: Setup Python
23
uses: actions/setup-python@v5
24
- python-version: 3.9
25
+ python-version: ${{ matrix.python-version }}
26
- name: Check configuration
- run: make check PIP=pip BUILDBOT=buildbot
27
+ run: make check PIP=pip BUILDBOT=buildbot PYTHON_VERSION=${{ matrix.python-version }}
0 commit comments