Skip to content

feat: Cursor IDE support, UI overhaul, hub improvements, brand assets #82

feat: Cursor IDE support, UI overhaul, hub improvements, brand assets

feat: Cursor IDE support, UI overhaul, hub improvements, brand assets #82

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package with dev dependencies
run: pip install -e ".[dev]"
- name: Lint (ruff check)
run: ruff check .
- name: Format check (ruff format)
run: ruff format --check .
- name: Type check (mypy)
run: mypy src
- name: Test (pytest)
run: pytest --cov=researchforge --cov-report=term-missing