-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
38 lines (32 loc) · 756 Bytes
/
doc.yml
File metadata and controls
38 lines (32 loc) · 756 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
name: Documentation workflow
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: False
matrix:
python: ['3.11']
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install linux system dependencies
run: sudo apt-get install -y libxkbcommon-x11-0
- name: Install Tox
run: pip install tox
- name: Build documentation
run: tox -e build_doc
env:
QT_QPA_PLATFORM: offscreen