Skip to content

[FIX & REFACTOR] adds fetch method #97

[FIX & REFACTOR] adds fetch method

[FIX & REFACTOR] adds fetch method #97

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
cp app/back-end/tools/configs/requirements.txt .
pip install -r requirements.txt
pip install pylint pylint-django
- name: Analysing the code with pylint
run: |
cp app/back-end/tools/configs/.pylintrc .
pylint $(git ls-files '*.py') --rcfile=.pylintrc --django-settings=ft_transcendence.settings