xmpp-rs/.gitlab-ci.yml

17 lines
259 B
YAML
Raw Normal View History

2018-12-20 15:56:15 +00:00
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