feat: parallelize all CLI commands and standardize output rendering #322
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version-file: .python-version | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "latest" | |
| - name: Install just | |
| uses: extractions/setup-just@v4 | |
| - name: Install dependencies | |
| run: just sync | |
| - name: Run type checks | |
| run: just type-check | |
| - name: Run linter | |
| run: just lint-check | |
| - name: Run formatter | |
| run: just format-check | |
| - name: Run tests | |
| run: just test |