add missing pegasus #732
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/[email protected] | |
- uses: actions/[email protected] | |
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 |