spec: Add Spec 15 β Data Repo Management CLI #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: Tests | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install JJ | |
| run: | | |
| bash scripts/install-jj.sh | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: uv sync --frozen | |
| - name: Lint | |
| run: uv run ruff check src/ tests/ | |
| - name: Run tests | |
| run: uv run pytest -v | |
| env: | |
| JJ_CONFIG: /dev/null |