Files
docker-mailserver/.github/workflows/linting.yml
2026-06-24 22:37:24 +02:00

29 lines
491 B
YAML

name: Lint
on:
# A workflow that creates a PR will not trigger this workflow,
# Providing a manual trigger as a workaround
workflow_dispatch:
pull_request:
push:
branches: [ master ]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Hadolint
run: make hadolint
- name: ShellCheck
run: make shellcheck
- name: ECLint
run: make eclint