File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed
Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 1717 package :
1818 runs-on : ubuntu-latest
1919 steps :
20- - uses : sourcemeta/jsonschema@v12.5.1
20+ - uses : sourcemeta/jsonschema@v12.6.0
2121 - uses : actions/checkout@v4
2222 - run : make lint
2323 - run : make test
Original file line number Diff line number Diff line change 1717 test :
1818 runs-on : ubuntu-latest
1919 steps :
20- - uses : sourcemeta/jsonschema@v12.5.1
20+ - uses : sourcemeta/jsonschema@v12.6.0
2121 - uses : actions/checkout@v4
2222 - run : make lint
2323 - run : make test
Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ GZIP ?= gzip
1010MKDIRP ?= mkdir -p
1111RMRF ?= rm -rf
1212
13- # TODO: Extend `validate` to take a directory as argument
14- SCHEMAS = $(shell find schemas/ -type f -name '* .json')
15- TESTS = $(shell find test/ -type f -name '* .json')
16-
1713include generated.mk
1814
1915# TODO: Make `jsonschema fmt` automatically detect test files
@@ -25,9 +21,9 @@ all: common test
2521common : $(GENERATED )
2622 $(JSONSCHEMA ) metaschema schemas meta
2723 $(JSONSCHEMA ) lint schemas meta
28- $(JSONSCHEMA ) validate meta/schemas-root.json $( SCHEMAS )
29- $(JSONSCHEMA ) validate meta/schemas.json $( SCHEMAS )
30- $(JSONSCHEMA ) validate meta/test.json $( TESTS )
24+ $(JSONSCHEMA ) validate meta/schemas-root.json schemas
25+ $(JSONSCHEMA ) validate meta/schemas.json schemas
26+ $(JSONSCHEMA ) validate meta/test.json test
3127 $(SHELLCHECK ) scripts/* .sh
3228 ./scripts/quality-schemas-tests-mirror.sh
3329 ./scripts/quality-templates-xbrl-utr-mirror.sh
You can’t perform that action at this time.
0 commit comments