fix(realtime): map JobStatusChange -> job.status_changed for cross-SD… #23
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev,all]" | |
| - name: Lint with ruff | |
| run: | | |
| ruff check src tests | |
| - name: Type check with mypy | |
| run: | | |
| mypy src/spooled | |
| - name: Run unit tests | |
| run: | | |
| pytest tests/unit -v --cov=spooled --cov-report=term-missing | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.x" | |
| - name: Build package | |
| run: | | |
| python -m pip install build | |
| python -m build | |
| - name: Check package | |
| run: | | |
| python -m pip install twine | |
| twine check dist/* |