From 52b7ab16e2c1ca296d3441adfba1a5bda0af2793 Mon Sep 17 00:00:00 2001 From: lash Date: Sun, 5 Mar 2023 10:13:02 +0000 Subject: [PATCH] Add requirements file --- Makefile | 6 ++++-- requirements.txt | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/Makefile b/Makefile index 71027a4..d41005b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ -all: +all: build + +build: python bundle.py > cic.json -test: all +test: build check-jsonschema --schemafile cic.json test_valid.json diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fee269a --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +check-jsonschema==0.21.0