default:
image: rust
compile:
stage: build
before_script:
- rustup component add clippy
script:
- cargo check
- cargo build
- cargo clippy
artifacts:
paths:
- target/release/quicktap-cli
expire_in: 1 week
tests:
stage: test
- cargo test