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.
1 parent e41ba52 commit 31cd7dcCopy full SHA for 31cd7dc
.github/workflows/ci.yml
@@ -4,16 +4,22 @@ on:
4
push:
5
paths:
6
- "**.py"
7
+ - ".github/workflows/ci.yml"
8
9
jobs:
10
11
linux:
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python-version: [ '3.7', '3.10' ]
16
+ name: Lint Python ${{ matrix.python-version }}
17
+
18
steps:
19
- uses: actions/checkout@v2
20
- uses: actions/setup-python@v2
21
with:
- python-version: '3.x'
22
+ python-version: ${{ matrix.python-version }}
23
24
- run: pip install .[lint]
25
0 commit comments