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