https://gitlab.com/AmosEgel/smuthi
Raw File
Tip revision: 74841f222e3d3bea0248b319e90571e80fd691f3 authored by Konstantin Ladutenko on 17 June 2019, 14:33:48 UTC
Update CONTRIBUTING.rst
Tip revision: 74841f2
.gitlab-ci.yml
image: python:latest

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