source: ammosreader/.gitlab-ci.yml@ 3c396a4

AmmosSource guix
Last change on this file since 3c396a4 was 3c396a4, checked in by Enrico Schwass <ennoausberlin@…>, 3 years ago

gitlab job added

  • Property mode set to 100644
File size: 300 bytes
Line 
1image: python:latest
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 TracBrowser for help on using the repository browser.