Skip to content

Bump idna from 2.10 to 3.7 in /requirements #107

Bump idna from 2.10 to 3.7 in /requirements

Bump idna from 2.10 to 3.7 in /requirements #107

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
types: [opened, reopened, ready_for_review, edited, synchronize]
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.5]
tox-env:
- py3-django2-noorgs
- py3-django2-withorgs
- py3-django2-check-noorgs
- py3-django2-check-withorgs
- docs
- quality
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 dependencies
run: |
pip install tox
- name: Test with tox
run: tox -e ${{ matrix.tox-env }}
- name: codecov
uses: codecov/codecov-action@v1
if: ${{ matrix.tox-env == 'py3-django2' }}