indivisible-rs/.gitlab-ci.yml
2022-03-01 18:59:38 +01:00

22 lines
288 B
YAML

image: "rust:latest"
stages:
- build
- test
build-job:
stage: build
artifacts:
paths:
- target/release/indivisible
script:
- cargo build --release
test-job:
stage: test
script:
- ./test.sh
include:
- template: Security/License-Scanning.gitlab-ci.yml