We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d4f6f3 commit 9d6c0e2Copy full SHA for 9d6c0e2
1 file changed
.github/workflows/test.yml
@@ -4,15 +4,16 @@ on: push
4
5
jobs:
6
build-and-test:
7
-
8
- runs-on: ubuntu-latest
9
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
10
+ python-version: ["3.8", "3.9", "3.10"]
11
steps:
12
- uses: actions/checkout@v2
- - name: Set up Python
13
+ - name: Set up Python ${{ matrix.python-version }}
14
uses: actions/setup-python@v2
15
with:
- python-version: '3.x'
16
+ python-version: ${{ matrix.python-version }}
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
0 commit comments