Skip to content
This repository was archived by the owner on Dec 22, 2024. It is now read-only.

Bump @sveltejs/vite-plugin-svelte from 2.4.6 to 2.5.3 in /frontend #596

Bump @sveltejs/vite-plugin-svelte from 2.4.6 to 2.5.3 in /frontend

Bump @sveltejs/vite-plugin-svelte from 2.4.6 to 2.5.3 in /frontend #596

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:
base-development:
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