Skip to content

Downsize backend

Downsize backend #183

Workflow file for this run

name: CI-Backend
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Linting
run: |
cd backend
python -m pip install --upgrade pip
python -m pip install virtualenv
python -m virtualenv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m black . --check --diff
python -m flake8 . --exclude=./.venv/ --ignore=E501,E203,W503 --max-line-length=88