Skip to content

Commit 29d22ba

Browse files
committed
add matrix
1 parent 4bc966c commit 29d22ba

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pythonapp.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,21 @@ jobs:
66
build_backend:
77
runs-on: ubuntu-latest
88

9+
strategy:
10+
matrix:
11+
python-version: [3.9, 3.10, 3.11]
12+
913
services:
1014
mqqt:
1115
image: 'rabbitmq:3.12.11'
1216
ports: ['5672:5672']
1317

1418
steps:
1519
- uses: actions/checkout@v4
16-
- name: Set up Python 3.8
20+
- name: Set up Python
1721
uses: actions/setup-python@v5
1822
with:
19-
python-version: 3.8
23+
python-version: ${{ matrix.python-version }}
2024
- name: Cache poetry virtualenv
2125
id: cache-poetry
2226
uses: actions/cache@v3

0 commit comments

Comments
 (0)