Skip to content

Bump aiohttp from 3.9.5 to 3.10.2 #17

Bump aiohttp from 3.9.5 to 3.10.2

Bump aiohttp from 3.9.5 to 3.10.2 #17

name: Check and Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch: {}
jobs:
run_tests:
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
name: Test on Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade setuptools
python -m pip install -r requirements.txt
python -m pip install -e .[test]
- name: Run checks and tests
run: |
make flake
pytest ./tests