Skip to content

(chore) Add support for Python 3.12 and Django 5.0 #29

(chore) Add support for Python 3.12 and Django 5.0

(chore) Add support for Python 3.12 and Django 5.0 #29

Workflow file for this run

name: Code coverage
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install tox
- name: Generate coverage report
run: tox -e coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
verbose: true