Commit 6304f809 authored by Shriwise, Patrick's avatar Shriwise, Patrick Committed by Patrick Shriwise
Browse files

Add .gitlab-ci.yml file

parent 59914bee
Loading
Loading
Loading
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%"