Replace travis (#21641)

This commit is contained in:
Pascal Vizeli 2019-03-04 09:59:35 +01:00 committed by GitHub
parent 10e334cbf0
commit 5efcbc5043
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.github/main.workflow vendored Normal file
View File

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