Fixed formatting - serves me right for not doing a PR, apologies #14
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: | |
| 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 |