final fixes (casing etc.) (#119) #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# S. https://github.com/marketplace/actions/csvlinter for details | |
# CAUTION: does not catch ALL csv errors | |
# Better linter: https://csvlint.io | |
name: Check if CSV files are valid | |
on: | |
[push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: csv lint | |
steps: | |
- uses: actions/checkout@v4 | |
- name: get_files | |
run: | | |
csv_files=$(find -type f -ipath ".*csv" -printf "%p ") | |
echo "CSV_FILES=$csv_files" >> $GITHUB_ENV | |
- name: csvlinter | |
uses: kcheriyath/[email protected] | |
with: | |
file_list: "${{ env.CSV_FILES }}" |