cmaes 0.2.2

An implementation of the CMA-ES optimization algorithm.
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build
      run: cargo build --release --verbose
    - name: Run tests
      run: cargo test --release --verbose --lib \
        && cargo test --release --verbose --doc \
        && cargo test --release --verbose --test termination \
        && cargo test --release --verbose consistent
    - name: Run examples
      run: make run-examples