diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d1ba4b40..af216bb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,6 @@ jobs: steps: - run: sudo snap install jsonschema - uses: actions/checkout@v4 + - run: make generate - run: make lint - run: make test diff --git a/Makefile b/Makefile index 0e73dfc0..d3d01ded 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ RMRF ?= rm -rf SCHEMAS = $(shell find schemas/ -type f -name '*.json') TESTS = $(shell find test/ -type f -name '*.json') -all: common test +all: generate common test $(JSONSCHEMA) fmt schemas meta --verbose $(JSONSCHEMA) fmt test --verbose --default-dialect "https://json-schema.org/draft/2020-12/schema"