Skip to content

Bump aiohttp from 3.7.4 to 3.8.5 #11

Bump aiohttp from 3.7.4 to 3.8.5

Bump aiohttp from 3.7.4 to 3.8.5 #11

name: Python package
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox
- name: Run tox
run: python -m tox -e py
- name: Lint
run: python -m tox -e lint