Skip to content

Commit 4e65394

Browse files
authored
Merge pull request #249 from ccnmtl/nikolas-patch-1
Add python 3.11 testing
2 parents 5c11f83 + a5ac9ba commit 4e65394

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@ jobs:
55
runs-on: ubuntu-20.04
66
strategy:
77
matrix:
8-
python-version: [3.8]
8+
python-version: ["3.8", "3.11"]
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
11+
- name: Set up Python ${{ matrix.python-version }}
12+
uses: actions/setup-python@v4
13+
with:
14+
python-version: ${{ matrix.python-version }}
1115
- name: Build with Makefile
1216
run: make

0 commit comments

Comments
 (0)