From 2d90cf48b32ac24b9061f73c12a9ed0eef32d3ec Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 28 Jul 2024 15:34:19 +0200 Subject: [PATCH] run a check for uptodate json schema --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56d02e5bf..3e4ef2faa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,11 @@ jobs: # Allow failure for coveralls coveralls || true + - name: Run json schema extract + # This should be kept before the repository check to ensure that the schema is up-to-date + run: | + python build_helpers/extract_config_json_schema.py + - name: Check for repository changes run: | if [ -n "$(git status --porcelain)" ]; then