https://gitlab.com/AmosEgel/smuthi
Raw File
Tip revision: f257c5f4777a7337854fe68b28539e20b9a4a6eb authored by Amos Egel on 16 July 2020, 10:17:17 UTC
update docstrings
Tip revision: f257c5f
.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
    - rm -r smuthi
    - nose2 -v

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