Add GitLab CI builds.

This commit is contained in:
Bauke 2020-05-24 15:33:18 +02:00
parent ba5d7c3edd
commit b02bb063b9
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 17 additions and 0 deletions

17
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,17 @@
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
allow_failure: true