17 lines
182 B
YAML
17 lines
182 B
YAML
stages:
|
|
- build
|
|
- test
|
|
|
|
build-job:
|
|
stage: build
|
|
image: rust:latest
|
|
script:
|
|
- echo "in build"
|
|
- cargo build
|
|
|
|
test-job:
|
|
stage: test
|
|
script:
|
|
- echo "in test"
|
|
|