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

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

updated yaml config to python 3.10

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