fix: mdl installation #41
Workflow file for this run
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: Linters | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
markdownlint: | |
name: Markdownlint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- name: Run markdownlint | |
uses: containerbuildsystem/actions/markdownlint@master | |
dockerfile-lint: | |
name: Dockerfile lint | |
runs-on: ubuntu-latest | |
container: | |
image: hadolint/hadolint:latest-debian | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v1 | |
- name: Lint Dockerfiles with hadolint | |
run: hadolint --ignore DL3013 --ignore DL3041 **/Dockerfile | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- name: Run ShellCheck | |
uses: containerbuildsystem/actions/shellcheck@master | |
with: | |
path: '.' | |
yamllint: | |
name: yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- name: Run yamllint | |
uses: containerbuildsystem/actions/yamllint@master |