forked from pytorch/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (109 loc) · 3.41 KB
/
Copy pathdocs.yml
File metadata and controls
122 lines (109 loc) · 3.41 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: Build docs
on:
push:
branches:
- master
pull_request:
paths-ignore:
- "tests/**"
- "docker/**"
release:
types: [published]
workflow_dispatch:
jobs:
build-deploy:
permissions:
contents: write
if: (github.ref == 'refs/heads/master' && github.event_name == 'push') || github.event_name == 'release'
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 10
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
python-version: "${{ matrix.python-version }}"
activate-environment: true
enable-cache: true
cache-suffix: "${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('docs/requirements.txt') }}"
cache-dependency-glob: |
**/docs/requirements.txt
**/requirements-dev.txt
**/pyproject.toml
- run: sudo npm install katex -g
- name: Install docs deps
run: bash .github/workflows/install_docs_deps.sh
- name: Build docs
run: bash .github/workflows/build_docs.sh
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html
publish_branch: gh-pages
commit_message: Deploy pytorch/ignite docs
force_orphan: true
linkcheck:
if: github.event_name == 'pull_request' || github.event_name == 'push'
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
max-parallel: 10
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
python-version: ${{ matrix.python-version }}
activate-environment: true
enable-cache: true
cache-suffix: "${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('docs/requirements.txt') }}"
cache-dependency-glob: |
**/docs/requirements.txt
**/requirements-dev.txt
**/pyproject.toml
- name: Install docs deps
run: bash .github/workflows/install_docs_deps.sh
- name: make linkcheck
working-directory: ./docs/
run: make linkcheck
doctest:
if: github.event_name == 'pull_request' || github.event_name == 'push'
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 10
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
python-version: "${{ matrix.python-version }}"
activate-environment: true
enable-cache: true
cache-suffix: "${{ hashFiles('requirements-dev.txt') }}-${{ hashFiles('docs/requirements.txt') }}"
cache-dependency-glob: |
**/docs/requirements.txt
**/requirements-dev.txt
**/pyproject.toml
- run: sudo npm install katex -g
- name: Install docs deps
run: bash .github/workflows/install_docs_deps.sh
- name: make doctest
working-directory: ./docs/
run: |
make html
make doctest
make coverage