Skip to content

Update to support django 5 #69

Update to support django 5

Update to support django 5 #69

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.10]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install --upgrade setuptools tox
- name: Run tests
run: tox -e py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: .coverage
fail_ci_if_error: true