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