Skip to content

Commit

Permalink
Merge pull request f#137 from Vazno/csv_linter
Browse files Browse the repository at this point in the history
Create csv_linter.yml
  • Loading branch information
f authored Dec 19, 2022
2 parents ede6105 + fd9953b commit 125616d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/csv_linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: CSV Linter and Trailing Whitespaces

on:
push:
pull_request:

jobs:
lint_and_check_trailing_whitespaces:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install csvkit
- name: Lint CSV files
run: find . -name "*.csv" -exec csvclean -n -u 2 {} +
env:
CI: true
- name: Check for errors
if: always()
run: |
if ! grep -q "No errors." <(find . -name "*.csv" -exec csvclean -n -u 2 {} + | grep -v "^$"); then
echo "Errors were found in one or more CSV files."
exit 1
fi
- name: Check Trailing Whitespaces
run: |
# Check if the special file contains any trailing whitespaces
if grep -q "[[:space:]]$" ./prompts.csv; then
echo "ERROR: Found trailing whitespaces in prompts.csv"
exit 1
else
echo "No trailing whitespaces found in prompts.csv"
fi

0 comments on commit 125616d

Please sign in to comment.