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 / linter-shell (push) Has been cancelled
Mark stable commit / linter-python (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
- Rename ShellCheck workflow to linter-shell - Rename Ruff workflow to linter-python - Update workflow calls and dependencies accordingly https://chatgpt.com/share/693ed61a-7490-800f-aef1-fce845e717a2
15 lines
338 B
YAML
15 lines
338 B
YAML
name: ShellCheck
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
linter-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)
|