-
Notifications
You must be signed in to change notification settings - Fork 11
39 lines (32 loc) · 887 Bytes
/
os.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
name: OS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
env:
sphinx-version: '5.*'
python-version: '3.10'
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
- name: Set up Sphinx ${{ env.sphinx-version }}
run: |
python -V
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
pip install "sphinx==${{ env.sphinx-version }}"
pip install "jinja2<3.1"
- name: Tests
run: |
python -m sphinx docs docs/_build/ -b html -W -C
python -m sphinx docs docs/_build/ -b latex -W