Raid_Manager/.gitlab-ci.yml

17 lines
260 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
- cargo test
2022-12-04 14:02:07 +00:00
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
- cargo build --release
- cargo test
2022-12-04 14:02:07 +00:00
allow_failure: true