mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-01-09 08:38:11 +08:00
25 lines
468 B
YAML
25 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
|