Skip to content

changelog for upcoming release #159

changelog for upcoming release

changelog for upcoming release #159

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
versions:
- python: "3.8"
env: py38-django40
- python: "3.9"
env: py39-django40
- python: "3.10"
env: py310-django40
name: "Python ${{ matrix.versions.python }} - ${{ matrix.versions.env }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.versions.python }}
- name: Install Dependencies
run: pip install tox coverage
- name: Run Tests
run: tox -e ${{ matrix.versions.env }}