stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --release
- cargo test
rust-nightly:
image: rustlang/rust:nightly
allow_failure: true