Skip to content

Commit d3a949a

Browse files
Update pylint.yaml
1 parent ed775af commit d3a949a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/pylint.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,17 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
python-version: ["3.11"]
1310
steps:
1411
- uses: actions/checkout@v3
15-
- name: Set up Python ${{ matrix.python-version }}
12+
- name: Set up Python 3.11
1613
uses: actions/setup-python@v3
1714
with:
18-
python-version: ${{ matrix.python-version }}
15+
python-version: "3.11"
1916
- name: Install dependencies
2017
run: |
2118
python -m pip install --upgrade pip
2219
pip install pylint
20+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2321
- name: Analysing the code with pylint
2422
run: |
2523
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)