File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 33
33
cache-dependency-path : .github/workflows/validate_requirements.txt
34
34
- run : pip install -r .github/workflows/validate_requirements.txt
35
35
- name : Validate grammar tests
36
- run : >
37
- python -c 'import check_jsonschema; from check_jsonschema.loaders import instance; import ruamel.yaml; instance.LOAD_FUNC_BY_TAG["yaml"] = ruamel.yaml.YAML(typ="safe", pure=True).load; check_jsonschema.main()' --schemafile grammar_schema.yml ${{ matrix.manifest }}
38
- # TODO https://github.com/python-jsonschema/check-jsonschema/pull/121
39
- # run: "check-jsonschema --schemafile grammar_schema.yml ${{ matrix.manifest }}"
36
+ run : " check-jsonschema --schemafile grammar_schema.yml ${{ matrix.manifest }}"
40
37
41
38
list-functions :
42
39
runs-on : ubuntu-latest
60
57
cache-dependency-path : .github/workflows/validate_requirements.txt
61
58
- run : pip install -r .github/workflows/validate_requirements.txt
62
59
- name : Validate function spec
63
- run : >
64
- python -c 'import check_jsonschema; from check_jsonschema.loaders import instance; import ruamel.yaml; instance.LOAD_FUNC_BY_TAG["yaml"] = ruamel.yaml.YAML(typ="safe", pure=True).load; check_jsonschema.main()' --schemafile function_schema.yml ${{ matrix.manifest }}
65
- # TODO https://github.com/python-jsonschema/check-jsonschema/pull/121
66
- # run: "check-jsonschema --schemafile function_schema.yml ${{ matrix.manifest }}"
60
+ run : " check-jsonschema --schemafile function_schema.yml ${{ matrix.manifest }}"
You can’t perform that action at this time.
0 commit comments