From 9ba4ea7d18201503954079a4119d162eaf1d9194 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 7 Mar 2019 10:03:07 +0100 Subject: [PATCH] Check json files too --- .github/main.workflow | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index 469e376ad..8375d5b87 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,8 +1,16 @@ workflow "tox" { on = "push" - resolves = ["Python 3.7"] + resolves = [ + "Python 3.7", + "Json Files", + ] } action "Python 3.7" { uses = "home-assistant/actions/py37-tox@master" } + +action "Json Files" { + uses = "home-assistant/actions/jq@master" + args = "**/*.json" +}