Skip to content

fix: スクリプトの登録忘れ #65

fix: スクリプトの登録忘れ

fix: スクリプトの登録忘れ #65

Workflow file for this run

name: Shell Script Lint
on: [push]
jobs:
lint:
name: Lint Shell scripts with ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt install -y shellcheck
- name: Run ShellCheck
run: |
find . -type f -name '*.sh' -not -path './.github/*' -print0 \
| xargs -0 shellcheck --shell=bash