Skip to content

Bump aiohttp from 3.8.1 to 3.9.0 #91

Bump aiohttp from 3.8.1 to 3.9.0

Bump aiohttp from 3.8.1 to 3.9.0 #91

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python: [2.7, 3.6, 3.7, 3.8, "3.10"]
name: Python ${{ matrix.python }} Test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run test suite
run: python setup.py test