https://gitlab.com/AmosEgel/smuthi
Raw File
Tip revision: 427f9326debcf3317d3e0e53bdd70a7cb10266ce authored by Lorenzo Pattelli on 13 May 2020, 23:25:39 UTC
automatic_parameter_selection: add missing Args string
Tip revision: 427f932
.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