Skip to content

Commit 53733f0

Browse files
Update pylint.yml
1 parent 0e4b840 commit 53733f0

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

.github/workflows/pylint.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1 @@
1-
name: PyLint
21

3-
on: [push]
4-
5-
jobs:
6-
build:
7-
runs-on: ubuntu-latest
8-
strategy:
9-
matrix:
10-
python-version: ["3.11"]
11-
steps:
12-
- uses: actions/checkout@v4
13-
14-
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v3
16-
with:
17-
python-version: ${{ matrix.python-version }}
18-
19-
- name: Install dependencies
20-
run: |
21-
python -m pip install --upgrade pip
22-
pip install -r src/backend/requirements.txt
23-
pip install flake8 # Ensure flake8 is installed explicitly
24-
25-
- name: Run flake8 and pylint
26-
run: |
27-
flake8 --config=.flake8 src/backend # Specify the directory to lint

0 commit comments

Comments
 (0)