Merge pull request #1677 from GhostWriters/dependabot/pip/mkdocs-mate… #2342
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: [push, pull_request] | |
jobs: | |
editorconfig-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: editorconfig-checker | |
run: | | |
docker run --rm \ | |
-v "${GITHUB_WORKSPACE}":/check \ | |
-u "$(id -u):$(id -g)" \ | |
mstruebing/editorconfig-checker | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: markdownlint | |
run: | | |
find "${GITHUB_WORKSPACE}" -name '*.md' -exec \ | |
docker run --rm \ | |
-v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" \ | |
markdownlint/markdownlint \ | |
-r ~MD007,~MD013,~MD033,~MD034 \ | |
{} + | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: shellcheck | |
run: | | |
find "${GITHUB_WORKSPACE}" -name '*.sh' -exec \ | |
docker run --rm \ | |
-v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" \ | |
koalaman/shellcheck \ | |
{} + | |
shfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: shfmt | |
run: | | |
find "${GITHUB_WORKSPACE}" -name '*.sh' -exec \ | |
docker run --rm \ | |
-v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" \ | |
mvdan/shfmt \ | |
-s -d \ | |
{} + | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: yamllint | |
run: | | |
find "${GITHUB_WORKSPACE}" -name '*.yaml' -o -name '*.yml' -exec \ | |
docker run --rm \ | |
-v "${GITHUB_WORKSPACE}":"${GITHUB_WORKSPACE}" \ | |
peterdavehello/yamllint \ | |
yamllint -d '{"extends":"default","rules":{"document-start":{"present":false},"line-length":"disable","truthy":{"check-keys":false}}}' \ | |
{} + |