Skip to content

Commit 31cd7dc

Browse files
committed
ci: python 3.7, 3.10
1 parent e41ba52 commit 31cd7dc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,22 @@ on:
44
push:
55
paths:
66
- "**.py"
7+
- ".github/workflows/ci.yml"
78

89
jobs:
910

1011
linux:
1112
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
python-version: [ '3.7', '3.10' ]
16+
name: Lint Python ${{ matrix.python-version }}
17+
1218
steps:
1319
- uses: actions/checkout@v2
1420
- uses: actions/setup-python@v2
1521
with:
16-
python-version: '3.x'
22+
python-version: ${{ matrix.python-version }}
1723

1824
- run: pip install .[lint]
1925

0 commit comments

Comments
 (0)