elaeis4/.gitlab-ci.yml

20 lines
294 B
YAML

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
script:
- cargo test