From 4d74f26e9d53e19b86dc68f223fdc1daabb4983e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Fri, 16 May 2025 13:48:12 +0200 Subject: [PATCH] Check Dockerfiles --- .github/workflows/dockerfile.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/dockerfile.yml diff --git a/.github/workflows/dockerfile.yml b/.github/workflows/dockerfile.yml new file mode 100644 index 0000000..7f9ed79 --- /dev/null +++ b/.github/workflows/dockerfile.yml @@ -0,0 +1,17 @@ +name: Dockerfile + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + hadolint: + runs-on: ubuntu-22.04 + steps: + - name: git checkout + uses: actions/checkout@v4 + + - name: Check Dockerfiles + uses: hadolint/hadolint-action@v3.1.0