Skip to content

Commit b1af258

Browse files
committed
fix: change error line yml
1 parent 1296dca commit b1af258

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/django.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ jobs:
5252
- name: Check if .env has been updated
5353
run: cat .env # This is a command, so it uses 'run'
5454

55-
- name: Clean up keys (Optional)
56-
run: |
57-
rm -rf security
58-
echo "Keys removed after use." # This is a command, so it uses 'run'
59-
6055
- name: Install Dependencies
6156
run: |
6257
python -m pip install --upgrade pip
6358
pip install -r requirements.txt # This is a command, so it uses 'run'
6459
6560
- name: Run Tests
6661
run: python manage.py test # This is a command, so it uses 'run'
62+
63+
- name: Clean up keys (Optional)
64+
run: |
65+
rm -rf security
66+
echo "Keys removed after use." # This is a command, so it uses 'run'

0 commit comments

Comments
 (0)