Skip to content

Bump aiohttp from 3.10.8 to 3.11.11 (#48) #105

Bump aiohttp from 3.10.8 to 3.11.11 (#48)

Bump aiohttp from 3.10.8 to 3.11.11 (#48) #105

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
paths:
- src/**
- tests/**
- pyproject.toml
- poetry.lock
- .github/workflows/test.yml
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Run pylint
run: poetry run pylint src tests
- name: Run black
run: poetry run black --check src tests
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Run mypy
run: poetry run mypy src
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run pytest