Skip to content

chore: bump aiohttp from 3.10.2 to 3.10.11 (#261) #595

chore: bump aiohttp from 3.10.2 to 3.10.11 (#261)

chore: bump aiohttp from 3.10.2 to 3.10.11 (#261) #595

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test using pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Run tests
run: pipenv run pytest