Skip to content

Commit 55165b9

Browse files
committed
Start preparing 3.11 tests
1 parent 759e826 commit 55165b9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ on: [push]
44
jobs:
55
build:
66
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
python-version: ["3.10", "3.11"]
710
steps:
811
- name: Checkout
912
uses: actions/checkout@v3
1013

1114
- name: Set up Python
1215
uses: actions/setup-python@v4
1316
with:
14-
python-version: "3.10"
17+
python-version: ${{ matrix.python-version }}
1518

1619
- name: Install Python dependencies
1720
run: |

0 commit comments

Comments
 (0)