pipeline: check-service: image: rust:${RUST_VERSION} pull: true commands: - echo "Using rust:${RUST_VERSION} on service-${SERVICE}" - cd service-${SERVICE} - cargo check when: event: [ push, pull_request ] matrix: SERVICE: - hello - world - joiner RUST_VERSION: - latest - 1.54.0