elaeis4/.gitlab-ci.yml

17 lines
224 B
YAML
Raw Normal View History

default:
image: rust
2022-12-15 22:04:01 +00:00
compile:
stage: build
script:
- cargo check
- cargo build
artifacts:
paths:
- target/release/quicktap-cli
expire_in: 1 week
2022-12-15 22:04:01 +00:00
tests:
stage: test
script:
- cargo test