Skip to content

Fixed formatting - serves me right for not doing a PR, apologies #14

Fixed formatting - serves me right for not doing a PR, apologies

Fixed formatting - serves me right for not doing a PR, apologies #14

name: Validate CSV
on:
push:
branches:
- main
- dev
paths:
- "boaviztapi/data/**"
pull_request:
branches:
- main
- dev
paths:
- "boaviztapi/data/**"
jobs:
check-csv:
name: Check CSV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: 3.12.0
- name: Install poetry
run: pipx install poetry
- name: Install dependencies
run: poetry install --only csv
- name: Run CSV check
run: make check-csv