ci: use actionlint and problem matchers (#4116)

This commit is contained in:
ReenigneArcher 2025-07-29 22:08:30 -04:00 committed by GitHub
commit 99cf9ac960
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 215 additions and 120 deletions

View file

@ -27,7 +27,8 @@ for dir in ${DIRECTORIES}; do
# remove the directory if it is empty
if [[ $empty_dir != "" ]]; then # prevent the loop from running and failing if no directories found
for i in "${empty_dir}"; do # don't split words as we already know this will be a single directory
# shellcheck disable=SC2066 # don't split words as we already know this will be a single directory
for i in "${empty_dir}"; do
echo "Removing empty directory: ${i}"
rmdir "${i}"
done