We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c28cb7 commit 5e28bc3Copy full SHA for 5e28bc3
.github/workflows/csvlint.yml
@@ -1,12 +1,13 @@
1
+name: CSV Lint
2
+
3
on: [push]
4
5
jobs:
6
test:
7
runs-on: ubuntu-latest
- name: csv lint
8
steps:
- - uses: actions/checkout@v1
9
- - name: Install csvkit
10
- run: pip install csvkit
11
- - name: Validate CSV file with csvformat
12
- run: csvformat .shelldio/all_stations.txt > /dev/null
+ - uses: actions/checkout@v4
+ - name: Install csvkit
+ run: pip install csvkit
+ - name: Validate CSV file with csvclean
13
+ run: csvclean -n .shelldio/all_stations.txt
0 commit comments