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 dde6b4b commit ccde28bCopy full SHA for ccde28b
.github/workflows/pr-check.yml
@@ -22,10 +22,9 @@ jobs:
22
python -m pip install --upgrade pip
23
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24
25
- - name: Run Linter (flake8)
26
- run: |
27
- pip install flake8
28
- flake8 . --count --max-complexity=10 --max-line-length=100 --statistics
+ - name: Run Linter
+ run: pylint mssql_python/
+ continue-on-error: true
29
30
- name: Run Tests (pytest)
31
run: |
0 commit comments