Skip to content

Merge branch 'main' into codex/update-to-version-0.9.2-meb5s9 #42

Merge branch 'main' into codex/update-to-version-0.9.2-meb5s9

Merge branch 'main' into codex/update-to-version-0.9.2-meb5s9 #42

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
quality:
name: ${{ matrix.os }} / Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run Django system checks
run: python manage.py check
- name: Run pre-commit
run: pre-commit run --all-files
- name: Run unit tests with coverage
run: |
coverage run manage.py test
coverage report --fail-under=80