Skip to content

Commit bdff8cd

Browse files
committed
Added missing work directory in django-ci.yml file
1 parent f16f203 commit bdff8cd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/django-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,21 @@ jobs:
3535
python-version: "3.11"
3636

3737
- name: Install dependencies
38+
working-directory: src
3839
run: |
3940
pip install -r requirements.txt
4041
4142
- name: Load CI environment variables
43+
working-directory: src
4244
run: |
4345
set -o allexport
4446
source .env.ci
4547
set +o allexport
4648
4749
- name: Run migrations
50+
working-directory: src
4851
run: python manage.py migrate
4952

5053
- name: Run tests
54+
working-directory: src
5155
run: pytest

0 commit comments

Comments
 (0)