Skip to content

fix(validate): honor effective env cascade (#524) #853

fix(validate): honor effective env cascade (#524)

fix(validate): honor effective env cascade (#524) #853

Workflow file for this run

name: ShellCheck Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
shellcheck:
name: 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 on strut entrypoint
run: shellcheck -s bash strut
- name: Run ShellCheck on all lib shell files
run: find lib -name '*.sh' -print0 | xargs -0 shellcheck -s bash