瀏覽代碼

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

Jeremy Stretch 2 年之前
父節點
當前提交
93a05289ad
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      .github/workflows/ci.yml

+ 3 - 0
.github/workflows/ci.yml

@@ -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/