Skip to content
Snippets Groups Projects
.gitlab-ci.yml 318 B
Newer Older
image: python:3.7

stages:
  - configure
  - test

configure-job:
  stage: configure
  script:
    - echo "Compiling the code..."
    - echo "Compile complete."

unit-test-job:
  stage: test
  script:
    - echo "Running unit tests... This will take about 60 seconds."
    - sleep 10
    - echo "Code coverage is 90%"