mirror of
https://github.com/brittonhayes/validate-yaml.git
synced 2024-11-26 23:11:00 -05:00
579 B
579 B
Validate YAML
Github action to validate yaml files against a JSON schema
Usage
Validate your YAML files against a JSON structure by providing a schema path and a list of files.
- name: Validate YAML
uses: brittonhayes/validate-yaml
with:
schemaPath: 'schema.json'
files: |
example/foo.yaml
Example JSON Schema
{
"test": {
"structure": {
"myValue": "string",
"myValue2": "string"
}
}
}
Example Valid YAML for this schema
---
test:
structure:
myValue: '1'
myValue2: '2'