source: ammosreader/.gitlab-ci.yml@ ddd8fc5

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

Update .gitlab-ci.yml

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