xmpp-rs/.gitlab-ci.yml

17 lines
259 B
YAML
Raw Normal View History

stages:
- build
2017-02-27 15:06:15 +00:00
rust-latest:
stage: build
image: rust:latest
2017-02-27 15:06:15 +00:00
script:
- cargo build --verbose
- cargo test --verbose
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose
- cargo test --verbose