Skip to content

Bump aiohttp from 3.9.2 to 3.9.4 #33

Bump aiohttp from 3.9.2 to 3.9.4

Bump aiohttp from 3.9.2 to 3.9.4 #33

Workflow file for this run

name: Run tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14-bullseye
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
DATABASE_DSN: postgres://postgres:postgres@localhost:5432/postgres
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install poetry
run: pip install poetry
- name: Install dependancies
run: poetry install
- name: Lint
run: |
poetry run black --check .
poetry run isort -c .
poetry run mypy .
poetry run flake8
- name: Test
run: poetry run pytest