Merge branch 'main' of https://github.com/bckohan/django-enum #220
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: Lint | |
permissions: | |
contents: read | |
on: | |
push: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
inputs: | |
debug: | |
description: 'Open ssh debug session.' | |
required: true | |
default: false | |
type: boolean | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
# run static analysis on bleeding and trailing edges | |
python-version: [ '3.9', '3.13' ] | |
django-version: | |
- '3.2' # LTS April 2024 | |
- '4.2' # LTS April 2026 | |
- '5.0' # April 2025 | |
- '5.1' # December 2025 | |
exclude: | |
- python-version: '3.9' | |
django-version: '4.2' | |
- python-version: '3.9' | |
django-version: '5.0' | |
- python-version: '3.13' | |
django-version: '3.2' | |
- python-version: '3.9' | |
django-version: '5.1' | |
env: | |
RDBMS: sqlite | |
TEST_PYTHON_VERSION: ${{ matrix.python-version }} | |
TEST_DJANGO_VERSION: ${{ matrix.django-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
id: sp | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
enable-cache: true | |
- name: Install Just | |
uses: extractions/setup-just@v2 | |
- name: Install Dependencies | |
run: | | |
just setup ${{ steps.sp.outputs.python-path }} | |
just test-lock Django~=${{ matrix.django-version }}.0 | |
just install-docs | |
- name: Install Emacs | |
if: ${{ github.event.inputs.debug == 'true' }} | |
run: | | |
sudo apt install emacs | |
- name: Setup tmate session | |
if: ${{ github.event.inputs.debug == 'true' }} | |
uses: mxschmitt/action-tmate@v3.19 | |
with: | |
detached: true | |
timeout-minutes: 60 | |
- name: Run Static Analysis | |
run: | | |
just manage makemigrations | |
just test ./tests/test_verify_environment.py | |
just check-lint | |
just check-format | |
just check-types | |
just check-package | |
just check-readme |