Merge pull request #60 from theghost5800/patch-1 #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
name: Lint all Dockerfiles | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Haskell Dockerfile Linter | |
uses: docker://cdssnc/docker-lint-github-action | |
with: | |
# https://github.com/hadolint/hadolint/wiki/DL3008 | |
# https://github.com/hadolint/hadolint/wiki/DL3013 | |
# https://github.com/hadolint/hadolint/wiki/DL3016 | |
# https://github.com/hadolint/hadolint/wiki/DL3018 | |
args: --ignore DL3008 --ignore DL3013 --ignore DL3016 --ignore DL3018 |