mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-12-11 06:47:10 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
315 B
YAML
17 lines
315 B
YAML
---
|
|
on: push
|
|
name: build
|
|
jobs:
|
|
test:
|
|
name: Run tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Dockerfilelint
|
|
uses: docker://replicated/dockerfilelint
|
|
with:
|
|
args: Dockerfile
|
|
|
|
- name: ShellCheck
|
|
run: shellcheck entrypoint.sh
|