[pull] master from docker-mailserver:master #814
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Hadolint | |
run: make hadolint | |
- name: ShellCheck | |
run: make shellcheck | |
- name: ECLint | |
run: make eclint |