16 lines
156 B
YAML
16 lines
156 B
YAML
image: rust:latest
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- cargo build --release
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- cargo test
|