Raid_Manager/.gitlab-ci.yml

18 lines
377 B
YAML
Raw Normal View History

2022-12-04 14:02:07 +00:00
stages:
- build
rust-latest:
stage: build
image: rust:latest
script:
2022-12-06 23:19:10 +00:00
- cargo build -r --manifest-path=lib/Cargo.toml
- cargo test -r --manifest-path=lib/Cargo.toml
2022-12-04 14:02:07 +00:00
rust-nightly:
stage: build
image: rustlang/rust:nightly
script:
2022-12-06 23:19:10 +00:00
- cargo build -r --manifest-path=lib/Cargo.toml
- cargo test -r --manifest-path=lib/Cargo.toml
allow_failure: true