Skip to content

#354 #346 composable state for menu/sidebar components. #109

#354 #346 composable state for menu/sidebar components.

#354 #346 composable state for menu/sidebar components. #109

Workflow file for this run

name: pr_ci_backend
on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
jobs:
backend:
name: Run PR Backend Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements-dev.txt
- name: Run ruff format - Formatting check
run: ruff ./backend
continue-on-error: true
- name: Run ruff - Linting and import sorting check
run: ruff ./backend
continue-on-error: true
- name: Run mypy - Static Type Checking
run: mypy ./backend --config-file ./backend/pyproject.toml