Skip to content

Commit bfcf0f6

Browse files
committed
Run GHA on both 3.9 and 3.13
1 parent 9462a0b commit bfcf0f6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,18 @@ env:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
python-version:
16+
- '3.9'
17+
- '3.13'
1318
steps:
1419
- uses: actions/checkout@v4
1520
with:
1621
persist-credentials: false
1722
- name: Setup Python
1823
uses: actions/setup-python@v5
1924
with:
20-
python-version: 3.9
25+
python-version: ${{ matrix.python-version }}
2126
- name: Check configuration
22-
run: make check PIP=pip BUILDBOT=buildbot
27+
run: make check PIP=pip BUILDBOT=buildbot PYTHON_VERSION=${{ matrix.python-version }}

0 commit comments

Comments
 (0)