Loading .gitlab-ci.yml 0 → 100644 +18 −0 Original line number Diff line number Diff line 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%" Loading
.gitlab-ci.yml 0 → 100644 +18 −0 Original line number Diff line number Diff line 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%"