Revision b63fe08d84a9e8b8ba9d21062faea699c618568a authored by Amos Egel on 09 November 2019, 09:12:24 UTC, committed by Amos Egel on 09 November 2019, 09:12:24 UTC
2 parent s df9c348 + 1547b52
Raw File
.gitlab-ci.yml
image: python:3.7

stages:
  - test
  - deploy

test:
  stage: test
  script:
    - echo "Testing"
    - apt-get update
    - apt-get install -y gfortran
    - pip3 install .
    - pip3 install nose2
    - nose2 -v

production:
  stage: deploy
  script:
    - echo "Production"
  only:
    - tags
back to top