Skip to content

Merge pull request #14 from FX31337/dev #245

Merge pull request #14 from FX31337/dev

Merge pull request #14 from FX31337/dev #245

Workflow file for this run

# yamllint disable rule:line-length
---
name: Lint
on:
pull_request:
paths:
- '**/*.md'
- '**/*.sh'
- '**/*.y?ml'
- 'Dockerfile'
push:
paths:
- '**/*.md'
- '**/*.sh'
- '**/*.y?ml'
- 'Dockerfile'
jobs:
Markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: markdownlint-cli
uses: nosborn/[email protected]
with:
files: .
config_file: ".markdownlint.yml"
ShellCheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Shell Check
uses: luizm/action-sh-checker@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
sh_checker_comment: true
sh_checker_shfmt_disable: true
YAML:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: YAML check (yamllint)
uses: ibiqlik/action-yamllint@master
with:
strict: true