rurel 0.6.0

Flexible, reusable reinforcement learning (Q learning) implementation
Documentation
name: Rust

on:
  - pull_request
  - push

jobs:
  test:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - run: rustup component add rustfmt
    - run: cargo fmt --all -- --check
    - run: rustup component add clippy
    - run: cargo clippy --all-targets --all-features -- -D warnings
    - run: cargo build --verbose
    - run: cargo test --verbose