adjusted flags at JAR_O and KPC_U #1
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: Validate CSV Files | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened # Trigger when a PR is opened | |
- synchronize # Trigger when new commits are pushed to the PR | |
- reopened # Trigger if the PR is reopened | |
branches: | |
- master | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install pandas | |
- name: Run CSV validation | |
run: | | |
python validate_csv.py |