mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2024-08-16 10:09:53 +02:00
6 lines
No EOL
182 B
Bash
6 lines
No EOL
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 {} + |