1
0
Fork 0
monkey-interpreter/.gitlab-ci.yml

16 lines
429 B
YAML
Raw Permalink Normal View History

2020-06-01 11:52:34 +00:00
# This file is a template, and might need editing before it works on your project.
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/rust/tags/
image: "rust:latest"
# Use cargo to test the project
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --all --verbose
cache:
paths:
- cargo/
- target/