Setup CI for GitLab.

This commit is contained in:
Emmanuel Gil Peyrot 2018-12-20 16:56:15 +01:00
parent cf0cfda6b5
commit f6593aa74b

16
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,16 @@
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose
- cargo test --verbose