Skip to content

Type hinting, PEP adjustments, full=True output. #23

Type hinting, PEP adjustments, full=True output.

Type hinting, PEP adjustments, full=True output. #23

Workflow file for this run

name: KramersMoyal CI
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
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@v1