File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed
Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -30,19 +30,10 @@ jobs:
3030 with :
3131 python-version : ${{ matrix.python-version }}
3232
33- - name : Create and activate virtual environment
34- run : |
35- python -m venv venv
36- source venv/bin/activate
37- pip install --upgrade pip
38- pip install flake8
39- pip install gql websockets simconnect
40-
4133 - name : Install dependencies
4234 run : |
43- python -m pip install --upgrade pip
44- pip install gql websockets simconnect flake8
35+ pip install --upgrade pip
36+ pip install pylint gql websockets simconnect
4537
46- - name : Run flake8 on Scripts folder
47- run : |
48- flake8 Scripts --count --select=E9,F63,F7,F82 --show-source
38+ - name : Run linter on the Scripts folder
39+ run : python -m pylint Scripts --disable=all --enable=F,E
You can’t perform that action at this time.
0 commit comments