Skip to content

test: add coverage for dates, rates, fixedIncome and models packages #4

test: add coverage for dates, rates, fixedIncome and models packages

test: add coverage for dates, rates, fixedIncome and models packages #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/[email protected]
- name: Install dependencies
run: uv sync --group dev --python ${{ matrix.python-version }}
- name: Run tests
run: uv run pytest