Closes #14872: Extend CI workflow to check for missing Django migrations

This commit is contained in:
Jeremy Stretch 2024-01-19 15:59:06 -05:00
parent 8cc13e9c13
commit 9cff8d0d60

View File

@ -68,6 +68,9 @@ jobs:
- name: Collect static files
run: python netbox/manage.py collectstatic --no-input
- name: Check for missing migrations
run: python netbox/manage.py makemigrations --check
- name: Check PEP8 compliance
run: pycodestyle --ignore=W504,E501 --exclude=node_modules netbox/