opml/.gitlab-ci.yml

18 lines
281 B
YAML
Raw Normal View History

2020-05-24 13:33:18 +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
script:
- cargo build --verbose
- cargo test --verbose
allow_failure: true