source:
ammosreader/.gitlab-ci.yml@
ddd8fc5
Last change on this file since ddd8fc5 was ddd8fc5, checked in by , 3 years ago | |
---|---|
|
|
File size: 353 bytes |
Rev | Line | |
---|---|---|
[8073839] | 1 | image: python:latest |
[ddd8fc5] | 2 | |
[3c396a4] | 3 | pages: |
4 | stage: deploy | |
5 | script: | |
[050ace0] | 6 | - python3 --version |
[2d2c629] | 7 | - pip install -U sphinx |
[3c396a4] | 8 | - sphinx-build -b html doc/rst/ public |
9 | artifacts: | |
10 | paths: | |
11 | - public | |
12 | only: | |
13 | - main | |
14 | pytest: | |
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.