mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-01-10 00:59:22 +08:00
24 lines
468 B
YAML
24 lines
468 B
YAML
---
|
|
on: push
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Dockerfilelint
|
|
uses: docker://replicated/dockerfilelint
|
|
with:
|
|
args: Dockerfile
|
|
|
|
- name: Bats
|
|
uses: actions/bin/bats@master
|
|
with:
|
|
args: test/*.bats
|
|
|
|
- name: ShellCheck
|
|
uses: actions/bin/shellcheck@master
|
|
with:
|
|
args: entrypoint.sh
|