new-home-core 0.1.3

New Home Core is, as the name says, the core of the whole New Home eco system. It manages all New Home applications in your home.
Documentation
image: "rustlang/rust:nightly"

# Use cargo to test the project
check:cargo:
  script:
    - rustc --version && cargo --version  # Print version info for debugging
    - cargo check --all --verbose
  tags:
    - docker

test:cargo:
  script:
    - rustc --version && cargo --version  # Print version info for debugging
    - cargo test --all --verbose
  tags:
    - docker