Revision d64b0a235eb4f89edeab2fd3f91c55a13b92e18e authored by Krzysztof Czajkowski on 25 July 2020, 11:02:50 UTC, committed by Krzysztof Czajkowski on 25 July 2020, 11:02:50 UTC
1 parent a6f81a8
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
    - rm -r smuthi
    - nose2 -v

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