mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
* chore: Add Django 5.0 and Python 3.12 to the testing
* what-python-version-can-i-use-with-django
* Do not test Django 4.1 on Python 3.12
* Upgrade setuptools on Python 3.12
* pyyaml = { version = "^6.0.1", python = "^3.12" }
* pyyaml = { version = "^6.0.1", python = "^3.12" }
* poetry lock --no-update
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
# https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django
|
|
name: test
|
|
|
|
"on": [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
django-version: ["3.2", "4.1", "4.2", "5.0"]
|
|
exclude:
|
|
- django-version: "3.2"
|
|
python-version: "3.11"
|
|
- django-version: "3.2"
|
|
python-version: "3.12"
|
|
- django-version: "4.1"
|
|
python-version: "3.12"
|
|
- django-version: "5.0"
|
|
python-version: "3.8"
|
|
- django-version: "5.0"
|
|
python-version: "3.9"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1
|
|
with:
|
|
virtualenvs-create: true
|
|
virtualenvs-in-project: true
|
|
installer-parallel: true
|
|
|
|
- name: Set up cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: .venv
|
|
key: venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
poetry install
|
|
poetry run pip install --upgrade pip
|
|
poetry run pip install --upgrade "django==${{ matrix.django-version }}.*"
|
|
|
|
- name: Run tests
|
|
run: |
|
|
poetry run pytest
|
|
poetry check
|
|
poetry run pip check
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
file: ./coverage.xml
|