Skip to content

Bump aiohttp from 3.9.2 to 3.9.4 (#248) #390

Bump aiohttp from 3.9.2 to 3.9.4 (#248)

Bump aiohttp from 3.9.2 to 3.9.4 (#248) #390

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry==1.7.1
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest --verbose