add ae5f3d ae67f1 ae0c7f ae0096 af3c53 #588
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
name: Check main databases CSV format | |
on: | |
pull_request: | |
paths: | |
- "plane-alert-db.csv" | |
- "plane-alert-pia.csv" | |
- "plane-alert-ukraine.csv" | |
- "plane_images.csv" | |
jobs: | |
checkMainDatabases: | |
runs-on: ubuntu-latest | |
name: Check if main databases are valid CSVs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- run: pip install -r ./scripts/requirements.txt | |
- name: Run main database checks | |
run: python ./scripts/check_main_databases.py |