Skip to content

chore: minor left over pacman #596

chore: minor left over pacman

chore: minor left over pacman #596

Workflow file for this run

name: ShellCheck
on:
push:
branches: [ main ]
paths:
- '!**.md'
- '!.github/**'
- '**'
pull_request:
branches: [ main ]
paths:
- '!**.md'
- '!.github/**'
- '**'
workflow_dispatch:
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck (errors only)
run: |
find . -type f -name "*.sh" -o -name "*.bash" -o -name "*.ksh" -o -name "*.bashrc" | \
xargs shellcheck --severity=error