File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build :
11
11
runs-on : ubuntu-latest
12
+
13
+ permissions :
14
+ contents : read
15
+ packages : read
16
+ statuses : write
17
+
12
18
strategy :
13
19
max-parallel : 4
14
20
matrix :
15
21
python-version : [3.13]
16
22
17
23
steps :
18
- - uses : actions/checkout@v4
24
+ - name : Checkout code
25
+ uses : actions/checkout@v4
26
+ with :
27
+ fetch-depth : 0
28
+
19
29
- name : Set up Python ${{ matrix.python-version }}
20
30
uses : actions/setup-python@v3
21
31
with :
22
32
python-version : ${{ matrix.python-version }}
33
+
23
34
- name : Install Dependencies
24
35
run : |
25
36
python -m pip install --upgrade pip
26
37
pip install -r requirements/base.txt
38
+
27
39
- name : Run Linter
28
40
uses :
super-linter/[email protected]
29
41
env :
30
42
# To report GitHub Actions status checks
31
43
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
44
+
32
45
- name : Run Tests
33
46
run : |
34
47
python manage.py test
You can’t perform that action at this time.
0 commit comments