1
1
mirror of https://github.com/docker-mailserver/docker-mailserver synced 2025-12-30 09:51:41 +01:00
docker-mailserver/.github/workflows/linting.yml
dependabot[bot] c6079e9469
chore(deps): Bump actions/checkout from 5 to 6 (#4609)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 19:07:37 +01: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@v6
- name: Hadolint
run: make hadolint
- name: ShellCheck
run: make shellcheck
- name: ECLint
run: make eclint