Skip to content

Commit 238d084

Browse files
authored
Added workflows settings in django.yml for Linter
1 parent a76a15a commit 238d084

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/django.yml

+14-1
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,39 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12+
13+
permissions:
14+
contents: read
15+
packages: read
16+
statuses: write
17+
1218
strategy:
1319
max-parallel: 4
1420
matrix:
1521
python-version: [3.13]
1622

1723
steps:
18-
- uses: actions/checkout@v4
24+
- name: Checkout code
25+
uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 0
28+
1929
- name: Set up Python ${{ matrix.python-version }}
2030
uses: actions/setup-python@v3
2131
with:
2232
python-version: ${{ matrix.python-version }}
33+
2334
- name: Install Dependencies
2435
run: |
2536
python -m pip install --upgrade pip
2637
pip install -r requirements/base.txt
38+
2739
- name: Run Linter
2840
uses: super-linter/[email protected]
2941
env:
3042
# To report GitHub Actions status checks
3143
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44+
3245
- name: Run Tests
3346
run: |
3447
python manage.py test

0 commit comments

Comments
 (0)