forked from nonsensical-dev/zenyx-engine
20 lines
231 B
YAML
20 lines
231 B
YAML
stages:
|
|
- test
|
|
- build
|
|
- publish
|
|
|
|
tests:
|
|
stage: test
|
|
image: rust
|
|
script:
|
|
- cargo test
|
|
|
|
build:
|
|
stage: build
|
|
image: rust
|
|
script:
|
|
- cargo build --release
|
|
artifacts:
|
|
paths:
|
|
- target/release/zenyx
|
|
|