From 2a65a3e89163337c307eafaef8bfe42d1dd827cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= <felix@piedallu.me> Date: Sun, 24 Sep 2023 19:47:12 +0200 Subject: [PATCH] Install jsonschema on github actions for catalog linter --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 94dc27d1..0b036386 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: python-version: 3.11 - name: Install toml python lib run: | - pip3 install toml + pip3 install toml jsonschema - name: Check TOML validity for apps.toml run: | python3 -c "import toml; toml.load(open('apps.toml'))"