mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2025-01-18 17:41:58 +01:00
6 lines
182 B
Bash
6 lines
182 B
Bash
#!/bin/bash
|
|
|
|
cd "$GITHUB_WORKSPACE" || exit 1
|
|
find . -name \*.sh -exec shellcheck {} +
|
|
find . -name \*.bashrc -exec shellcheck {} +
|
|
find . -name \*.bash_profile -exec shellcheck {} + |