Add fish shell completion support #337
Workflow file for this run
This file contains hidden or 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: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: {} | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Run ShellCheck and shfmt | |
uses: luizm/[email protected] | |
env: | |
SHELLCHECK_OPTS: -o all | |
SHFMT_OPTS: -i 4 -d | |
# uses .markdownlint.yml for configuration | |
- name: Run markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v16 | |
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 |