Skip to content

linted

linted #59

Workflow file for this run

name: Pylint Backend
on:
push:
paths:
- "backend/**"
pull_request:
paths:
- "backend/**"
jobs:
pylint-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
working-directory: ./backend
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
pip install pylint
- name: Lint with Pylint
run: pylint backend/app.py