-
Notifications
You must be signed in to change notification settings - Fork 2
84 lines (75 loc) · 2.31 KB
/
Copy pathlint.yml
File metadata and controls
84 lines (75 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: lint
permissions:
contents: read
on:
push:
tags-ignore:
- '*'
branches: ['main']
pull_request:
branches: ['main']
workflow_call:
workflow_dispatch:
inputs:
debug:
description: 'Open ssh debug session.'
required: true
default: false
type: boolean
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# run static analysis on bleeding and trailing edges
python-version: ['3.10', '3.12', '3.14']
django-version:
- 'dj42' # LTS April 2026
- 'dj52' # LTS April 2028
- 'dj60' # April 2027
exclude:
- python-version: '3.12'
django-version: 'dj42'
- python-version: '3.14'
django-version: 'dj42'
- python-version: '3.10'
django-version: 'dj52'
- python-version: '3.14'
django-version: 'dj52'
- python-version: '3.10'
django-version: 'dj60'
- python-version: '3.12'
django-version: 'dj60'
env:
TEST_PYTHON_VERSION: ${{ matrix.python-version }}
TEST_DJANGO_VERSION: ${{ matrix.django-version }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Just
uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b
with:
enable-cache: false
- 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@35b54afac29c97fb54faba5b513f8fbd1882f113
timeout-minutes: 60
- name: Run Static Analysis
env:
PYTHON_PATH: ${{ steps.sp.outputs.python-path }}
run: |
just check -p "$PYTHON_PATH" --group "$TEST_DJANGO_VERSION"