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 0e4b840 commit 53733f0Copy full SHA for 53733f0
.github/workflows/pylint.yml
@@ -1,27 +1 @@
1
-name: PyLint
2
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
27
- flake8 --config=.flake8 src/backend # Specify the directory to lint
0 commit comments