Skip to content

shellcheck

shellcheck #9

Workflow file for this run

name: shellcheck
on:
push:
branches:
- master
paths:
- ".github/workflows/shellcheck.yml"
- "**.sh"
pull_request:
merge_group:
workflow_dispatch:
schedule:
- cron: "28 6 * * 4"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.head.label || github.run_id }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions: {}
defaults:
run:
shell: bash
jobs:
shellcheck:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- run: shellcheck -ax **/*.sh