mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-01-10 17:18:37 +08:00
19 lines
360 B
HCL
19 lines
360 B
HCL
workflow "Run tests" {
|
|
on = "push"
|
|
resolves = ["Shellcheck", "Bats", "Dockerfilelint"]
|
|
}
|
|
|
|
action "Shellcheck" {
|
|
uses = "actions/bin/shellcheck@master"
|
|
args = "entrypoint.sh"
|
|
}
|
|
|
|
action "Bats" {
|
|
uses = "actions/bin/bats@master"
|
|
args = "test/*.bats"
|
|
}
|
|
|
|
action "Dockerfilelint" {
|
|
uses = "docker://replicated/dockerfilelint"
|
|
args = ["Dockerfile"]
|
|
}
|