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 99d9ca9 commit 40bef5bCopy full SHA for 40bef5b
.github/workflows/pytest.yml
@@ -25,7 +25,7 @@ jobs:
25
uses: actions/checkout@v3
26
27
- name: Set up Python ${{ matrix.python-version }}
28
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v4
29
with:
30
python-version: ${{ matrix.python-version }}
31
@@ -35,4 +35,9 @@ jobs:
35
python -m pip install .[test]
36
37
- name: Run tests
38
- run: make test
+ run: make test
39
+
40
+ - name: Analysing the code with pylint
41
+ if: ${{ matrix.python-version }} == '3.10'
42
+ run: |
43
+ pylint --fail-under=9 $(git ls-files '*.py')
requirements_dev.txt
@@ -1,5 +1,4 @@
1
black==23.1.0
2
-pylint
3
mypy
4
isort
5
jupyter
requirements_test.txt
@@ -1 +1,2 @@
-pytest>=7.3.2
+pytest>=7.3.2
+pylint
0 commit comments