stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose --all-features
# - cargo test --verbose
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --verbose --all-features
# - cargo test --verbose
allow_failure: true