Skip to content

Initial import: bash-utils with scripts + CI #1

Initial import: bash-utils with scripts + CI

Initial import: bash-utils with scripts + CI #1

Workflow file for this run

name: ShellCheck Lint
on: [push, pull_request]
jobs:
shellcheck:
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 bin/* || true