Skip to content

Bump aiohttp from 3.9.4 to 3.10.2 #65

Bump aiohttp from 3.9.4 to 3.10.2

Bump aiohttp from 3.9.4 to 3.10.2 #65

Workflow file for this run

name: "Test on push"
on:
pull_request:
types: [opened, reopened]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Set Timezone
uses: szenius/[email protected]
with:
timezoneLinux: "Europe/Berlin"
timezoneMacos: "Europe/Berlin"
timezoneWindows: "Europe/Berlin"
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install -e .
- name: Run tests and collect coverage
run: pytest --cov=./ tests --asyncio-mode=legacy
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3