Skip to content

Commit

Permalink
Update pylint.yml
Browse files Browse the repository at this point in the history
Made pylint install requirements first since this cringe is afraid of external libraries
  • Loading branch information
ReallyWeirdCat authored Nov 27, 2024
1 parent 7c3fa7b commit f9f395c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
working-directory: Backend
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pip && python -m pip install -r requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: |
Expand Down

0 comments on commit f9f395c

Please sign in to comment.