We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 153286b commit 2cb30bfCopy full SHA for 2cb30bf
1 file changed
.github/workflows/ci.yml
@@ -39,6 +39,13 @@ jobs:
39
run: |
40
pytest tests/ -v
41
42
+ - name: Run migrations for security audit
43
+ env:
44
+ PYTHONPATH: ${{ github.workspace }}
45
+ DJANGO_SETTINGS_MODULE: tests.settings
46
+ run: |
47
+ python -c "import django; django.setup(); from django.core.management import call_command; call_command('migrate', '--run-syncdb')"
48
+
49
- name: Run Security Audit
50
env:
51
PYTHONPATH: ${{ github.workspace }}
0 commit comments