add gitlab ci file

This commit is contained in:
andreas 2020-01-31 19:54:59 +01:00
parent d9183e64fa
commit 6cdfcaa130

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose
tags:
- local