kalmanfilt 0.2.6

Kalman and other filters from Kalman-and-Bayesian-Filters-in-Python
Documentation
name: Rust

on: [push, pull_request]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Build
      run: cargo build --verbose
    - name: Lint
      run: cargo clippy
    - name: Run tests for no_std
      run: cargo test --verbose --no-default-features
    - name: Run tests
      run: cargo test --verbose --all-features