From 71ecaa438583db5027a4344e2baf5fa55b70b6f7 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 30 Mar 2019 21:59:15 +0100 Subject: [PATCH] Delete main.workflow --- .github/main.workflow | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index 54869682e1c..00000000000 --- a/.github/main.workflow +++ /dev/null @@ -1,41 +0,0 @@ -workflow "Python 3.7 - tox" { - resolves = ["Python 3.7 - tests"] - on = "push" -} - -action "Python 3.7 - tests" { - uses = "home-assistant/actions/py37-tox@master" - args = "-e py37" -} - -workflow "Python 3.6 - tox" { - resolves = ["Python 3.6 - tests"] - on = "push" -} - -action "Python 3.6 - tests" { - uses = "home-assistant/actions/py36-tox@master" - args = "-e py36" -} - -workflow "Python 3.5 - tox" { - resolves = ["Pyton 3.5 - typing"] - on = "push" -} - -action "Python 3.5 - tests" { - uses = "home-assistant/actions/py35-tox@master" - args = "-e py35" -} - -action "Python 3.5 - lints" { - uses = "home-assistant/actions/py35-tox@master" - needs = ["Python 3.5 - tests"] - args = "-e lint" -} - -action "Pyton 3.5 - typing" { - uses = "home-assistant/actions/py35-tox@master" - args = "-e typing" - needs = ["Python 3.5 - lints"] -}