Add .gitlab-ci.yml

This commit is contained in:
Zanny 2018-12-01 03:14:39 +00:00
parent 14680c219f
commit bebb3820ea
1 changed files with 9 additions and 0 deletions

9
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,9 @@
# 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"
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --all --verbose