Skip to content

2025 is around the courner. CI updates. #31

2025 is around the courner. CI updates.

2025 is around the courner. CI updates. #31

Workflow file for this run

name: KramersMoyal CI
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-13, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, ubuntu-latest, windows-2019, windows-2022, windows-2025, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Testing
run: |
coverage run -m pytest test/
- name: Upload code coverage
uses: codecov/codecov-action@v5