Add ID fingerprints reported on slack (#19) #52
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
name: Validate CSV files | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Validate CSV files | |
runs-on: ubuntu-latest | |
container: debian:11 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: | | |
apt-get update | |
apt-get -y --no-install-recommends install python3 | |
- name: Run validation | |
run: ./scripts/validate_csv.py |