From 524a85ab302625938d83537ca1b8619a46c94142 Mon Sep 17 00:00:00 2001 From: Thomas Fini Hansen Date: Fri, 25 Mar 2022 08:17:19 +0100 Subject: [PATCH] Check dockerfile with hadolint --- .github/workflows/lint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..6a0ac0b --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,11 @@ +name: Lint +on: pull_request + +jobs: + hadolint: + name: Hadolint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run hadolint + uses: hadolint/hadolint-action@v2.0.0