Skip to content

Commit 83c149a

Browse files
committed
Add matrix testing for python 3.10 to 3.13. Add FUNDING.yml.
1 parent 5113b34 commit 83c149a

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
github: [tjhowse]
4+
custom: ["https://paypal.me/tjhowse"]

.github/workflows/python-app.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414

1515
runs-on: ubuntu-latest
1616

17+
strategy:
18+
matrix:
19+
python-version: ["3.10.x", "3.11.x", "3.12.x", "3.13.x"]
20+
1721
env:
1822
MQTT_HOST: 127.0.0.1
1923
MQTT_PORT: 1883
@@ -27,10 +31,10 @@ jobs:
2731
run: |
2832
docker run -d --name mosquitto -p $MQTT_PORT:$MQTT_PORT -v ./tests/mosquitto:/mosquitto/config eclipse-mosquitto:2
2933
30-
- name: Set up Python 3.11
34+
- name: Set up Python ${{ matrix.python-version }}
3135
uses: actions/setup-python@v4
3236
with:
33-
python-version: 3.11
37+
python-version: ${{ matrix.python-version }}
3438
- name: Install dependencies
3539
run: |
3640
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)