We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7393794 commit 35c9e11Copy full SHA for 35c9e11
.github/workflows/pylint.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- python-version: ["3.8", "3.10"]
+ python-version: ["3.8", "3.9", "3.10"]
11
steps:
12
- uses: actions/checkout@v4
13
- name: Set up Python ${{ matrix.python-version }}
@@ -20,4 +20,4 @@ jobs:
20
pip install pylint
21
- name: Analysing the code with pylint
22
run: |
23
- pylint hygdra_forecasting
+ pylint $(git ls-files '*.py')
0 commit comments