uvth/.gitlab-ci.yml
2019-06-26 18:17:30 +02:00

20 lines
231 B
YAML

image: 'rust:slim'
stages:
- test
variables:
CARGO_HOME: $CI_PROJECT_DIR/cargo
test:
stage: test
script:
- rustc --version
- cargo --version
- cargo test --verbose
cache:
paths:
- cargo/
- target/