Skip to content

created mongo and user set up #6

created mongo and user set up

created mongo and user set up #6

Workflow file for this run

name: Run Pytest on 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
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