Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v7...v7.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
572 B
YAML
31 lines
572 B
YAML
name: Shellcheck
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types: [synchronize, opened, reopened, edited]
|
|
paths:
|
|
- .github/workflows/shellcheck.yaml
|
|
- '**/*.sh'
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}-shellcheck
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
SHELLCHECK_VERSION: v0.9.0
|
|
|
|
jobs:
|
|
checks:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/[email protected]
|
|
|
|
- name: Run Shellcheck
|
|
uses: ludeeus/[email protected]
|
|
with:
|
|
format: gcc
|
|
version: ${{ env.SHELLCHECK_VERSION }}
|