Skip to content

Make shebang portable. #16

Make shebang portable.

Make shebang portable. #16

Workflow file for this run

name: ShellCheck
on: [push, pull_request]
jobs:
shellcheck:
name: Run ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: find . -type f -name "*.sh" -exec shellcheck {} +