Changeset 3c396a4 in ammosreader for .gitlab-ci.yml


Ignore:
Timestamp:
05/04/22 11:06:40 (3 years ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
AmmosSource, guix
Children:
8a6d675
Parents:
3364b8b
Message:

gitlab job added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .gitlab-ci.yml

    r3364b8b r3c396a4  
    11image: python:latest
    2 
    3 test:
    4     script:
    5         - python3 --version
     2pages:
     3  stage: deploy
     4  script:
     5    - sphinx-build -b html doc/rst/ public
     6  artifacts:
     7    paths:
     8    - public
     9  only:
     10  - main
     11pytest:
     12  stage: test
     13  script:
     14    - cd tests
     15    - pytest --junitxml=report.xml
     16  artifacts:
     17    when: always
     18    reports:
     19      junit: report.xml
Note: See TracChangeset for help on using the changeset viewer.