Merge pull request #57 from bckohan/54-support-django-50 #351
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
django-version: | |
- 'Django~=3.2.0' # LTS April 2024 | |
- 'Django~=4.2.0' # LTS April 2026 | |
- 'Django~=5.0.0' # April 2025 | |
exclude: | |
- python-version: '3.7' | |
django-version: 'Django~=5.0.0' | |
- python-version: '3.7' | |
django-version: 'Django~=4.2.0' | |
- python-version: '3.8' | |
django-version: 'Django~=5.0.0' | |
- python-version: '3.9' | |
django-version: 'Django~=5.0.0' | |
- python-version: '3.11' | |
django-version: 'Django~=3.2.0' | |
- python-version: '3.12' | |
django-version: 'Django~=3.2.0' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.5.1 | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Install Basic Dependencies | |
run: | | |
poetry config virtualenvs.in-project true | |
poetry run pip install --upgrade pip | |
poetry install | |
poetry run pip install -U "${{ matrix.django-version }}" | |
- name: No Optional Dependency Unit Tests | |
run: | | |
poetry run pytest --cov-fail-under=30 | |
- name: Install enum-properties | |
run: | | |
poetry install -E properties | |
- name: Unit Tests w/ enum-properties | |
run: | | |
poetry run pytest --cov-fail-under=30 | |
- name: Remove enum-properties | |
run: | | |
poetry run pip uninstall -y enum-properties | |
- name: Install djangorestframework | |
run: | | |
poetry install -E djangorestframework | |
- name: Run Unit Tests w/ djangorestframework | |
run: | | |
poetry run pytest --cov-fail-under=30 | |
- name: Install django-filters | |
run: | | |
poetry install -E filters | |
- name: Run Unit Tests w/ django-filter | |
run: | | |
poetry run pytest --cov-fail-under=30 | |
- name: Install all deps | |
run: | | |
poetry install -E all | |
- name: Run Full Unit Tests | |
run: | | |
poetry run pytest | |
- name: Run Static Analysis | |
run: | | |
poetry run pylint django_enum | |
poetry run mypy django_enum | |
poetry run doc8 -q doc | |
poetry check | |
poetry run pip check | |
poetry run safety check --full-report | |
poetry run python -m readme_renderer ./README.rst -o /tmp/README.html | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml |