Skip to content

fix to the HHD intervention in the event log #126

fix to the HHD intervention in the event log

fix to the HHD intervention in the event log #126

Workflow file for this run

name: Linting and Type checking
on: pull_request
jobs:
ruff-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/ruff-action@v3
ruff-format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/ruff-action@v3
with:
args: format --check --diff
pyright:
name: pyright with uv
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install the project
run: |
uv sync --locked --all-extras --dev
source .venv/bin/activate
- name: Run pyright
run: uv run pyright