Skip to content

Bump version: 2.0.0 → 2.1.0 #466

Bump version: 2.0.0 → 2.1.0

Bump version: 2.0.0 → 2.1.0 #466

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9' ]
tox-env: [ 'django-22', 'django-31', 'django-32' ]
name: python-${{ matrix.python-version }} / ${{ matrix.tox-env }}
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox codecov
- name: Run tests
run: tox -e ${{ matrix.tox-env }}
- name: Coverage report
run: codecov -e ${{ matrix.tox-env }}