2311061111/validate_yaml.py
2025-12-14 14:23:09 +08:00

6 lines
125 B
Python

import yaml
with open(".gitea/workflows/autograde.yml", "r") as f:
yaml.safe_load(f)
print("YAML syntax is valid!")