owner-monad 0.1.0

Rust implementation of a monad which provides ownership of an object
Documentation
stages:
  - build

rust-latest:
  stage: build
  image: rust:latest
  variables:
    RUSTFLAGS: -Dwarnings
  script:
    - rustup component add rustfmt clippy
    - cargo build --verbose
    - cargo test --verbose
    - cargo fmt -- --check
    - cargo clippy -- -D warnings
  cache:
    paths:
      - .cargo
      - target

rust-nightly:
  stage: build
  image: rustlang/rust:nightly
  script:
    - cargo build --verbose
    - cargo test --verbose
  allow_failure: true