Files
husk-milter/.gitlab-ci.yml
T

17 lines
177 B
YAML

stages:
- build
- test
build-job:
stage: build
image: rust:latest
script:
- cargo build
test-job:
stage: test
image: rust:latest
script:
- cargo test