Fix missing metadata for CSV #153
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
| # Copyright 2026 Lincoln Institute of Land Policy | |
| # SPDX-License-Identifier: MIT | |
| name: Run checks / tests | |
| on: [push, pull_request] | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: uv sync dependencies | |
| run: uv sync --all-extras | |
| - name: Run prek | |
| uses: j178/prek-action@v2 | |
| - name: Run pytest | |
| run: | | |
| uv run pytest |