source: ammosreader/.gitlab-ci.yml@ 437474e

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

Update .gitlab-ci.yml

  • Property mode set to 100644
File size: 432 bytes
RevLine 
[8073839]1image: python:latest
[3c396a4]2pages:
3 stage: deploy
4 script:
[050ace0]5 - python3 --version
[2d2c629]6 - pip install -U sphinx
[437474e]7 - pip install --upgrade sphinx_adc_theme
[3c396a4]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
[ab26682]18 - pip install -U pytest
[3c396a4]19 - pytest --junitxml=report.xml
20 artifacts:
21 when: always
22 reports:
[bca0f7e]23 junit: tests/report.xml
Note: See TracBrowser for help on using the repository browser.