You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
352 B

image: jimmycuadra/rust:nightly
stages:
- build
- test
build:
stage: build
script:
- cargo build --release
only:
- master
tags:
- rust
allow_failure: false
test:
stage: test
script:
- cargo test --release
only:
- master
tags:
- rust
allow_failure: false