We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1296dca commit b1af258Copy full SHA for b1af258
.github/workflows/django.yml
@@ -52,15 +52,15 @@ jobs:
52
- name: Check if .env has been updated
53
run: cat .env # This is a command, so it uses 'run'
54
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
-
60
- name: Install Dependencies
61
run: |
62
python -m pip install --upgrade pip
63
pip install -r requirements.txt # This is a command, so it uses 'run'
64
65
- name: Run Tests
66
run: python manage.py test # This is a command, so it uses 'run'
+
+ - name: Clean up keys (Optional)
+ run: |
+ rm -rf security
+ echo "Keys removed after use." # This is a command, so it uses 'run'
0 commit comments