From 5efcbc50431bc0c4b9352a00960ea95cec33175a Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 4 Mar 2019 09:59:35 +0100 Subject: [PATCH] Replace travis (#21641) --- .github/main.workflow | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/main.workflow 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" +}