diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000000..e1677572f5b --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,16 @@ +workflow "Tox" { + on = "push" + resolves = ["Python 3.7", "Python 3.6", "Python 3.5"] +} + +action "Python 3.7" { + uses = "home-assistant/actions/py37-tox@master" +} + +action "Python 3.6" { + uses = "home-assistant/actions/py36-tox@master" +} + +action "Python 3.5" { + uses = "home-assistant/actions/py35-tox@master" +}