arti/.gitlab-ci.yml

18 lines
281 B
YAML
Raw Normal View History

2020-12-06 00:16:34 +00:00
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --verbose
- cargo test --verbose
rust-nightly:
stage: build
image: rustlang/rust:nightly
allow_failure: true
script:
- cargo build --verbose
- cargo test --verbose