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

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"