@@ -16,33 +16,34 @@ jobs:
16
16
- uses : chartboost/ruff-action@v1
17
17
with :
18
18
version : 0.4.8
19
- args : ' format --check'
19
+ args : " format --check"
20
20
21
21
build :
22
22
runs-on : ubuntu-latest
23
23
name : Python${{ matrix.python-version }}/Django${{ matrix.django-version }}
24
24
strategy :
25
25
matrix :
26
- python-version : ["3.9", "3.10", "3.11", "3.12"]
27
- django-version : ["4.2", "5.0"]
26
+ python-version : ["3.9", "3.10", "3.11", "3.12", "3.13" ]
27
+ django-version : ["4.2", "5.0", "5.1" ]
28
28
exclude :
29
29
- python-version : " 3.9"
30
30
django-version : " 5.0"
31
-
31
+ - python-version : " 3.9"
32
+ django-version : " 5.1"
32
33
33
34
steps :
34
- - uses : actions/checkout@v4
35
+ - uses : actions/checkout@v4
35
36
36
- - name : Set up Python ${{ matrix.python-version }}
37
- uses : actions/setup-python@v5
38
- with :
39
- python-version : ${{ matrix.python-version }}
37
+ - name : Set up Python ${{ matrix.python-version }}
38
+ uses : actions/setup-python@v5
39
+ with :
40
+ python-version : ${{ matrix.python-version }}
40
41
41
- - name : Install dependencies
42
- run : |
43
- python -m pip install --upgrade pip
44
- pip install "Django~=${{ matrix.django-version }}.0"
42
+ - name : Install dependencies
43
+ run : |
44
+ python -m pip install --upgrade pip
45
+ pip install "Django~=${{ matrix.django-version }}.0"
45
46
46
- - name : Run Test
47
- run : |
48
- `which django-admin` test post_office --settings=post_office.test_settings --pythonpath=.
47
+ - name : Run Test
48
+ run : |
49
+ `which django-admin` test post_office --settings=post_office.test_settings --pythonpath=.
0 commit comments