testanything 0.1.1

Generate results in the Test Anything Protocol (TAP)
Documentation
image: quay.sys.cigna.com/c63094/rustup

stages:
  - test
#  - style
  - docs

cache:
  paths:
    - target
  
# before_script:
#   - rustup update
#   - rustup run nightly cargo install clippy
  
test:
  stage: test
  script:
    - cargo test

# style:
#   stage: style
#   script:
#     - rustup run nightly cargo clippy

docs:
  stage: docs
  script:
    - cargo doc