We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c11f83 + a5ac9ba commit 4e65394Copy full SHA for 4e65394
.github/workflows/build-and-test.yml
@@ -5,8 +5,12 @@ jobs:
5
runs-on: ubuntu-20.04
6
strategy:
7
matrix:
8
- python-version: [3.8]
+ python-version: ["3.8", "3.11"]
9
steps:
10
- - uses: actions/checkout@v2
+ - 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 }}
15
- name: Build with Makefile
16
run: make
0 commit comments