Skip to content

Update kalmanfilter.py for lower memory usage (#26) #28

Update kalmanfilter.py for lower memory usage (#26)

Update kalmanfilter.py for lower memory usage (#26) #28

name: Build & test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install
run: pip install -e .[dev,test,docs]
- name: Run tests
run: ./run-tests.sh