mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-02-23 22:43:59 +08:00
22 lines
422 B
YAML
22 lines
422 B
YAML
---
|
|
on: push
|
|
name: build
|
|
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: koenrh/actions/bats@master
|
|
with:
|
|
args: test/*.bats
|
|
|
|
- name: ShellCheck
|
|
run: shellcheck entrypoint.sh
|