mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
15 lines
257 B
YAML
15 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
|