Skip to content

Commit e1efa8c

Browse files
committed
update jobs to cover 3.7-3.10 and all platforms
1 parent ecc92e4 commit e1efa8c

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/lints.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@ on: [push, pull_request]
55
jobs:
66
code-style:
77

8-
# runs-on: ${{ matrix.os }}
9-
# strategy:
10-
# fail-fast: false
11-
# matrix:
12-
# os: [ubuntu-latest, windows-latest, macOS-latest]
13-
# python-version: [3.6, 3.7]
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, windows-latest, macOS-latest]
12+
python-version: [3.7, 3.8, 3.9, 3.10]
13+
14+
name: Python ${{ matrix.python-version }} Test
1415

15-
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
18-
- name: Set up Python 3.9
19-
uses: actions/setup-python@v2
17+
- uses: actions/checkout@v3
18+
- name: Set up Python
19+
uses: actions/setup-python@v3
2020
with:
21-
python-version: 3.9
21+
python-version: ${{ matrix.python-version }}
22+
architecture: x64
2223
- name: Install dependencies
2324
run: |
2425
python -m pip install --upgrade pip pipenv

0 commit comments

Comments
 (0)