mailcat/.gitlab-ci.yml
Andrey Golovizin e046318a2e CI: fix caching
2021-07-17 18:34:15 +02:00

12 lines
185 B
YAML

variables:
CARGO_HOME: "${CI_PROJECT_DIR}/.cargo"
test:
stage: test
image: rust:1.53.0
script:
- cargo test --verbose
cache:
paths:
- ".cargo"
- "target"