We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38952da + 2a6b408 commit 8dca03dCopy full SHA for 8dca03d
.github/workflows/acceptance-test.yml
@@ -57,3 +57,12 @@ jobs:
57
lowercase_alphanumeric=^[a-z0-9]*$
58
files: |
59
__tests__/fixtures/json/custom_ajv_regexp_format/valid.json
60
+
61
+ - name: acceptance test - flat yaml
62
+ uses: ./
63
+ id: json-yaml-validate-flat-yaml-test
64
+ with:
65
+ comment: "true"
66
+ yaml_schema: ./__tests__/fixtures/schemas/flat.yaml
67
+ files: |
68
+ __tests__/acceptance/flat_yaml/flat.yaml
__tests__/acceptance/flat_yaml/flat.yaml
@@ -0,0 +1,3 @@
1
+name: Test
2
+author: Me
3
+category: YAML
__tests__/fixtures/schemas/flat.yaml
@@ -0,0 +1,12 @@
+name:
+ type: string
+ description: The name
4
+ required: true
5
+author:
6
7
+ description: The author
8
9
+category:
10
11
+ description: The category
12
0 commit comments