forked from mcdc-project/mcdc
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (33 loc) · 846 Bytes
/
Copy pathdocs_test.yml
File metadata and controls
42 lines (33 loc) · 846 Bytes
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
name: Test Build the Docs
on:
push:
pull_request:
workflow_dispatch:
env:
UCX_TLS: self,sm,tcp
jobs:
build-docs:
runs-on: "ubuntu-latest"
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Set up MPI
uses: mpi4py/setup-mpi@v1
- name: Install mpi4py
run: |
pip install --upgrade pip
pip install --no-binary=mpi4py mpi4py
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[docs]"
python -m pip list
- name: Build the docs
working-directory: docs
run: make html