mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-02-24 06:54:07 +08:00
Add migrated GitHub workflow
This commit is contained in:
parent
835e587377
commit
983c9306ba
1 changed files with 24 additions and 0 deletions
24
.github/workflows/test.yml
vendored
Normal file
24
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
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
|
Loading…
Reference in a new issue