1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-04-17 23:33:35 +01:00

Check json files too

This commit is contained in:
Pascal Vizeli
2019-03-07 10:03:07 +01:00
committed by GitHub
parent 58a455d639
commit 9ba4ea7d18

10
.github/main.workflow vendored
View File

@@ -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"
}