diff --git a/.github/workflows/lint-docker.yml b/.github/workflows/lint-docker.yml new file mode 100644 index 0000000..0c218fa --- /dev/null +++ b/.github/workflows/lint-docker.yml @@ -0,0 +1,17 @@ +name: Lint Dockerfile + +on: + push: + paths: + - Dockerfile + +jobs: + lint-dockerfile: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - uses: hadolint/hadolint-action@v2 + with: + dockerfile: Dockerfile diff --git a/.github/workflows/lint.yml b/.github/workflows/lint-go.yml similarity index 99% rename from .github/workflows/lint.yml rename to .github/workflows/lint-go.yml index 6c2f041..5d6e5db 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint-go.yml @@ -1,4 +1,4 @@ -name: Lint +name: Lint Go on: push: