Skip to content

Fix shell completion scripts #259

Fix shell completion scripts

Fix shell completion scripts #259

Workflow file for this run

---
name: Lint
'on': [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Run ShellCheck and shfmt
uses: luizm/action-sh-checker@v0.7.0
env:
SHELLCHECK_OPTS: -o all
SHFMT_OPTS: -i 4 -d
# uses .markdownlint.yml for configuration
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v10
with:
globs: |
*.md
.github/**/*.md
- name: Run yamllint
uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: |
.github/workflows/**/*.yml
.*.yml
strict: true
config_file: .yamllint.yml