- Fix return type annotation for get_default_premium_for_product - Add type narrowing for Weight|Money union using _as_money helper - Add isinstance checks before float() calls for object types - Add type guard for Decimal.exponent comparison - Use _unit_typed and _currency_typed properties for type narrowing - Cast option_type to OptionType Literal after validation - Fix provider type hierarchy in backtesting services - Add types-requests to dev dependencies - Remove '|| true' from CI type-check job All 36 mypy errors resolved across 15 files.
74 lines
2.1 KiB
YAML
74 lines
2.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
env:
|
|
PIP_CACHE_DIR: ${{ github.workspace }}/.cache/pip
|
|
PYTHONUNBUFFERED: "1"
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: [linux, docker]
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install ruff black
|
|
- name: Run ruff
|
|
run: ruff check app tests scripts
|
|
- name: Run black
|
|
run: black --check app tests scripts
|
|
|
|
test:
|
|
runs-on: [linux, docker]
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install dependencies
|
|
run: |
|
|
set -x
|
|
python -m pip install --upgrade pip
|
|
pip install pytest pytest-asyncio httpx
|
|
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml
|
|
pip list
|
|
- name: Run tests
|
|
run: pytest tests/test_pricing.py tests/test_strategies.py tests/test_portfolio.py -v --tb=short
|
|
|
|
type-check:
|
|
runs-on: [linux, docker]
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install dependencies
|
|
run: |
|
|
set -x
|
|
python -m pip install --upgrade pip
|
|
pip install mypy
|
|
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml
|
|
pip list
|
|
- name: Run mypy
|
|
run: |
|
|
echo "Running mypy on core modules..."
|
|
mypy app/core app/models app/strategies app/services --ignore-missing-imports --show-error-codes --show-traceback
|
|
echo "Type check completed successfully" |