We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797c38e commit 58db774Copy full SHA for 58db774
.github/main.workflow
.github/workflows/main.yml
@@ -0,0 +1,15 @@
1
+on: push
2
+name: Lint all Dockerfiles
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@master
8
+ - name: Haskell Dockerfile Linter
9
+ uses: docker://cdssnc/docker-lint-github-action
10
+ with:
11
+ # https://github.com/hadolint/hadolint/wiki/DL3008
12
+ # https://github.com/hadolint/hadolint/wiki/DL3013
13
+ # https://github.com/hadolint/hadolint/wiki/DL3016
14
+ # https://github.com/hadolint/hadolint/wiki/DL3018
15
+ args: --ignore DL3008 --ignore DL3013 --ignore DL3016 --ignore DL3018
0 commit comments