This commit is contained in:
ludeeus
2019-03-09 11:25:14 +01:00
commit 86748bd806
4 changed files with 60 additions and 0 deletions

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

@@ -0,0 +1,16 @@
workflow "Trigger: Push" {
on = "push"
resolves = [
"Shellcheck",
"Black Code Formatter",
]
}
action "Shellcheck" {
uses = "ludeeus/action-shellcheck@master"
}
action "Black Code Formatter" {
uses = "lgeiger/black-action@master"
args = "$GITHUB_WORKSPACE --check"
}