-
Notifications
You must be signed in to change notification settings - Fork 2.4k
61 lines (59 loc) · 1.65 KB
/
lint_docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
name: Lint and Docs
on:
push:
branches: [ main, 'stable/*' ]
pull_request:
branches: [ main, 'stable/*' ]
merge_group:
concurrency:
group: ${{ github.repository }}-${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
docs:
if: github.repository_owner == 'Qiskit'
name: Docs
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
with:
# We need to fetch the whole history so 'reno' can do its job and we can inspect tags.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install ubuntu docs dependencies
run: tools/install_ubuntu_docs_dependencies.sh
- name: Run docs
run: tox -e docs
- name: Clean up docs detritus
run: rm -rf docs/_build/html/{.doctrees,.buildinfo}
- name: Store built documentation artifact
uses: actions/upload-artifact@v4
with:
name: qiskit-docs
path: |
./docs/_build/html/*
if-no-files-found: error
lint:
if: github.repository_owner == 'Qiskit'
name: Lint
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v4
with:
# We need to fetch the whole history so 'reno' can do its job and we can inspect tags.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install ubuntu docs dependencies
run: tools/install_ubuntu_docs_dependencies.sh
- name: Run lint
run: tox -e lint