Raid_Manager/.gitlab-ci.yml

17 lines
280 B
YAML
Raw Normal View History

2022-12-04 14:02:07 +00:00
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
- cargo build --release
2022-12-04 23:03:22 +00:00
- cargo test --release
2022-12-04 14:02:07 +00:00
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --release
2022-12-04 23:03:22 +00:00
- cargo test --release
2022-12-04 14:02:07 +00:00
allow_failure: true