Skip to content

Bump aiohttp from 3.7.4 to 3.8.5 in /docs #19

Bump aiohttp from 3.7.4 to 3.8.5 in /docs

Bump aiohttp from 3.7.4 to 3.8.5 in /docs #19

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
pytest:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest
run: |
python -m pip install tox
python -m tox -e py-django32,py-django41,py-django42
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
# files: ./coverage1.xml,./coverage2.xml # optional
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: '3.10'
- name: Run sphinx
run: |
python -m pip install tox
python -m tox -e docs