docs: rewrite README — clean, consistent, public-ready #379
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 ] | |
| jobs: | |
| quality: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout Nexus | |
| uses: actions/checkout@v4 | |
| - name: Checkout razorcore | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: RazorBackRoar/.razorcore | |
| path: ../.razorcore | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - name: Sync | |
| run: uv sync --all-extras | |
| - name: Lint | |
| run: uv run ruff check . | |
| - name: Type Check | |
| run: uv run ty check src --python-version 3.14 | |
| - name: Tests | |
| run: uv run pytest tests/ -q | |
| - name: Prune cache (keep CI runner lean) | |
| run: uv cache prune --ci | |
| if: always() |