Skip to content

changelog: add new entry #2

changelog: add new entry

changelog: add new entry #2

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
build:
name: Python ${{ matrix.python-version }} / ${{ matrix.tox-environment }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- pypy3
tox-environment:
- django22
- django32
- django42
exclude:
- python-version: 3.6
tox-environment: django42
- python-version: 3.7
tox-environment: django42
env:
TOXENV: ${{ matrix.tox-environment }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up system dependencies
run: |
sudo apt-get update
sudo apt-get install gettext
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox