changepoint 0.3.0

Change Point Detection in Rust
Documentation
variables:
    CARGO_HOME: $CI_PROJECT_DIR/cargo
    RUST_BACKTRACE: 1

before_script:
    - rustup component add rustfmt-preview

test:cargo-nightly:
    image: "rustlang/rust:nightly"
    before_script:
        - rustup install nightly --no-self-update
        - rustup override set nightly
        - rustup component add rustfmt --toolchain nightly
    script:
        - rustc --version && cargo --version
        - cargo fmt --all -- --check
        - cargo build
        - time cargo test --jobs 1
        - cargo bench -- --test

test:cargo-stable:
    image: "rust:1.41"
    script:
        - rustc --version && cargo --version
        - cargo build
        - time cargo test --jobs 1
        - cargo bench -- --test