Add initial daily‑log CSV and news‑scan template #1
This file contains hidden or 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" | |
| on: | |
| push: | |
| paths: | |
| - "daily-log.csv" | |
| pull_request: | |
| paths: | |
| - "daily-log.csv" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.x" | |
| - name: Validate CSV | |
| run: python3 scripts/validate_csv.py |