xmpp-rs/tokio-xmpp/.gitlab-ci.yml
2019-10-18 14:16:01 +02:00

14 lines
257 B
YAML

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