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

Bump aiohttp from 3.10.8 to 3.11.9 in /backend #590

Bump aiohttp from 3.10.8 to 3.11.9 in /backend

Bump aiohttp from 3.10.8 to 3.11.9 in /backend #590

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