Skip to content

Commit

Permalink
ci: remove validate file encoding after testing
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremy Andrews <[email protected]>
  • Loading branch information
ABC2015 committed Dec 18, 2024
1 parent 0417424 commit 8d950b6
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/validation-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,26 +84,6 @@ jobs:
echo "✅ All developer-made commit messages follow the convention."
fi
validate-file-encoding:
name: Validate File Encoding
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Validate File Encoding
run: |
echo "Validating file encoding..."
NON_UTF8_FILES=$(find . -type f -exec file -i {} + | grep -v "charset=utf-8" || true)
if [ -n "$NON_UTF8_FILES" ]; then
echo "❌ The following files are not UTF-8 encoded:"
echo "$NON_UTF8_FILES"
exit 1
else
echo "✅ All files are UTF-8 encoded."
fi
validate-dart-sdk-version:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8d950b6

Please sign in to comment.