Skip to content

fix(realtime): map JobStatusChange -> job.status_changed for cross-SD… #23

fix(realtime): map JobStatusChange -> job.status_changed for cross-SD…

fix(realtime): map JobStatusChange -> job.status_changed for cross-SD… #23

Workflow file for this run

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/*