Skip to content

fix: shellcheck workflow #479

fix: shellcheck workflow

fix: shellcheck workflow #479

Workflow file for this run

on: [push, pull_request]
name: ShellCheck scripts
jobs:
shellCheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run shellcheck.
run: |
while read -r script; do shellcheck --exclude=SC1090,SC1091 $script; done < files