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
+11
View File
@@ -0,0 +1,11 @@
import pathlib
def test_schedule_workflow_exists():
path = pathlib.Path(".github/workflows/mindmodel-schedule.yml")
assert path.exists(), f"Expected {path} to exist"
text = path.read_text(encoding="utf-8")
# ensure the file is a GitHub Actions workflow that declares a schedule
assert "on:" in text
assert "schedule" in text