Skip to content

Commit 0af4c65

Browse files
authored
Migrate to new GitHub Actions (#7)
Installing recommends is ok in this case
1 parent 8e0093d commit 0af4c65

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

.github/main.workflow

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
# https://github.com/hadolint/hadolint/wiki/DL3015
16+
args: --ignore DL3008 --ignore DL3013 --ignore DL3016 --ignore DL3018 --ignore DL3015

0 commit comments

Comments
 (0)