Skip to content

Bump svelte-check from 3.8.4 to 4.1.0 in /frontend #836

Bump svelte-check from 3.8.4 to 4.1.0 in /frontend

Bump svelte-check from 3.8.4 to 4.1.0 in /frontend #836

Workflow file for this run

name: Development Python workflow
on:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
jobs:
python-checks:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: Black check
run: poetry run black ./**/*.py
- name: Run mypy
run: poetry run mypy ./**/*.py