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 ed775af commit d3a949aCopy full SHA for d3a949a
.github/workflows/pylint.yaml
@@ -7,19 +7,17 @@ on:
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
- strategy:
11
- matrix:
12
- python-version: ["3.11"]
13
steps:
14
- uses: actions/checkout@v3
15
- - name: Set up Python ${{ matrix.python-version }}
+ - name: Set up Python 3.11
16
uses: actions/setup-python@v3
17
with:
18
- python-version: ${{ matrix.python-version }}
+ python-version: "3.11"
19
- name: Install dependencies
20
run: |
21
python -m pip install --upgrade pip
22
pip install pylint
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
23
- name: Analysing the code with pylint
24
25
pylint $(git ls-files '*.py')
0 commit comments