Skip to content

Transfer to epflight and rebranding from MMORE to mmore #163

Transfer to epflight and rebranding from MMORE to mmore

Transfer to epflight and rebranding from MMORE to mmore #163

Workflow file for this run

name: 📐 Pyright type checks
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
pyright:
name: "Pyright"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install uv
run: pipx install uv
- name: Install base dependencies
run: uv venv .venv && source .venv/bin/activate && uv pip install -e ".[process,index,rag,api,tui,cpu,dev,websearch]"
- name: Run Pyright (base)
continue-on-error: true
run: source .venv/bin/activate && pyright --project pyrightconfig.json
- name: Install colvision dependencies
run: uv venv .venv-colvision && source .venv-colvision/bin/activate && uv pip install -e ".[colvision,tui,cpu,dev]"
- name: Run Pyright (colvision)
continue-on-error: true
run: source .venv-colvision/bin/activate && pyright --project .github/pyright/pyrightconfig.colvision.json