forked from f/awesome-chatgpt-prompts
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.06 KB
/
csv_linter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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