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 13b06bb commit 11fdc59Copy full SHA for 11fdc59
.github/workflows/linting.yml
@@ -3,10 +3,10 @@ name: Linting
3
on:
4
push:
5
paths:
6
- - '**/*.py'
+ - 'v3/**/*.py'
7
- '**/linting.yml'
8
- 'pylintrc'
9
- - 'requirements.txt'
+ - 'v3/requirements.txt'
10
11
pull_request:
12
@@ -33,8 +33,8 @@ jobs:
33
python-version: ${{ matrix.python-version }}
34
- name: Install dependencies
35
run: |
36
- python -m pip install -r requirements.txt
+ python -m pip install -r v3/requirements.txt
37
python -m pip install pylint
38
- name: Testing with pylint
39
40
- pylint pysteve -d W0311 # enable later
+ pylint v3
0 commit comments