Fix actions with tox (#21642)

* Fix actions with tox

* Update main.workflow
This commit is contained in:
Pascal Vizeli 2019-03-04 10:23:19 +01:00 committed by GitHub
parent 5efcbc5043
commit 5c9f266672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,12 +5,15 @@ workflow "Tox" {
action "Python 3.7" { action "Python 3.7" {
uses = "home-assistant/actions/py37-tox@master" uses = "home-assistant/actions/py37-tox@master"
args = "-e lint,pylint,typing,cov"
} }
action "Python 3.6" { action "Python 3.6" {
uses = "home-assistant/actions/py36-tox@master" uses = "home-assistant/actions/py36-tox@master"
args = "-e lint,pylint,typing"
} }
action "Python 3.5" { action "Python 3.5" {
uses = "home-assistant/actions/py35-tox@master" uses = "home-assistant/actions/py35-tox@master"
args = "-e lint,pylint,typing"
} }