Skip to content

feat(trajectory): add Trajectories.endpoints() for boundary/backgroun… #53

feat(trajectory): add Trajectories.endpoints() for boundary/backgroun…

feat(trajectory): add Trajectories.endpoints() for boundary/backgroun… #53

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
quality-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install dependencies
run: uv sync --group dev
- name: Lint with ruff
run: |
uv run ruff check --output-format=github src/stilt
- name: Type checking with pyright
if: ${{ !cancelled() }}
run: |
uv run pyright src/stilt
- name: Check docstring coverage
if: ${{ !cancelled() }}
run: |
uv run docstr-coverage src/stilt --skip-magic --skip-init --fail-under 95