Revision 20fc953144e3f5aac53d634da3d387ce35b3df26 authored by Giacomo Mazzamuto on 12 November 2019, 18:51:30 UTC, committed by Giacomo Mazzamuto on 12 November 2019, 18:51:30 UTC
Contribution from Giacomo and Lorenzo

Closes #9

See merge request AmosEgel/smuthi!39
2 parent s b63fe08 + 182e7be
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