Skip to content

Commit 8b17183

Browse files
authored
Use python-version matrix (#61)
Mainly to match the Dockerfile image, but also so we can start testing other versions via a matrix
1 parent 39d821f commit 8b17183

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tox.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
python-version: ["3.9", "3.10"]
1014

1115
steps:
1216
- uses: actions/checkout@v5
1317
- name: Set up Python ${{ matrix.python-version }}
1418
uses: actions/setup-python@v6
1519
with:
16-
python-version: '3.9'
20+
python-version: ${{ matrix.python-verison }}
1721
- name: Install dependencies
1822
run: |
1923
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)