https://gitlab.com/AmosEgel/smuthi
Raw File
Tip revision: e12a1981442a6caed50df33207bffa5bc014c72b authored by Lorenzo Pattelli on 24 May 2020, 22:10:32 UTC
Merge branch 'lorenzo-contrib' into 'master'
Tip revision: e12a198
.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