diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0cc598..cd6b701 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,9 @@ jobs: needs: test steps: - uses: actions/checkout@v1 - - uses: ./ + + - name: Run integration test + uses: ./ with: dockerfile: testdata/Dockerfile diff --git a/Dockerfile b/Dockerfile index b2439e1..6c740a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,5 @@ FROM hadolint/hadolint:v1.17.2 COPY LICENSE README.md / -CMD ["hadolint"] +ENTRYPOINT [ "hadolint" ] +