ci(mindmodel): add scheduled validation workflow

This commit is contained in:
2026-03-24 22:41:43 +01:00
parent 2755dc373a
commit e29d8a8055
2 changed files with 46 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
name: mindmodel scheduled validate
on:
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt || true
- name: Run tests
run: |
python -m pytest -q
- name: Run mindmodel validator if manifest exists
if: ${{ always() }}
run: |
if [ -f .mindmodel/manifest.yaml ]; then
python -m scripts.mindmodel.cli || true
else
echo "No .mindmodel/manifest.yaml present — skipping validator"
fi