Skip to content

fixed styles in header and home svelte components #8

fixed styles in header and home svelte components

fixed styles in header and home svelte components #8

Workflow file for this run

name: MyPy Type Checking
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:
jobs:
mypy:
name: Mypy Type Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
pip install -r backend/requirements.txt
pip install -r backend/requirements-dev.txt
- name: Run mypy
run: mypy --config-file backend/pyproject.toml backend/