Skip to content

Commit 58db774

Browse files
authored
Migrate to new GitHub Actions (#13)
1 parent 797c38e commit 58db774

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

Diff for: .github/main.workflow

-13
This file was deleted.

Diff for: .github/workflows/main.yml

+15
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)