Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / lint-shell (push) Has been cancelled
Mark stable commit / lint-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
15 lines
336 B
YAML
15 lines
336 B
YAML
name: ShellCheck
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
lint-shell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install ShellCheck
|
|
run: sudo apt-get update && sudo apt-get install -y shellcheck
|
|
- name: Run ShellCheck
|
|
run: shellcheck -x $(find scripts -type f -name '*.sh' -print)
|