source: ammosreader/.gitlab-ci.yml@ 2d2c629

AmmosSource guix
Last change on this file since 2d2c629 was 2d2c629, checked in by Frank Löpthien <loepthien@…>, 3 years ago

Update .gitlab-ci.yml

  • Property mode set to 100644
File size: 328 bytes
Line 
1image: python:latest
2pages:
3 stage: deploy
4 script:
5 - pip install -U sphinx
6 - sphinx-build -b html doc/rst/ public
7 artifacts:
8 paths:
9 - public
10 only:
11 - main
12pytest:
13 stage: test
14 script:
15 - cd tests
16 - pytest --junitxml=report.xml
17 artifacts:
18 when: always
19 reports:
20 junit: report.xml
Note: See TracBrowser for help on using the repository browser.