doc: Remove [Description] title #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-License-Identifier: GPL-2.0-or-later | |
# Copyright (c) 2024 Petr Vorel <[email protected]> | |
name: "Test building sphinx doc" | |
on: | |
push: | |
paths: ['doc/**'] | |
pull_request: | |
paths: ['doc/**'] | |
permissions: {} | |
jobs: | |
sphinx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout LTP | |
uses: actions/checkout@v2 | |
with: | |
path: ltp | |
- name: Install sphinx and autotools | |
run: | | |
sudo apt update | |
sudo apt install autoconf make python3-sphinx python3-virtualenv | |
- name: Run configure | |
run: | | |
cd "$GITHUB_WORKSPACE/ltp/" | |
make autotools && ./configure | |
- name: Install sphinx dependencies | |
run: | | |
cd "$GITHUB_WORKSPACE/ltp/doc/" | |
python3 -m virtualenv .venv | |
. .venv/bin/activate | |
pip install -r requirements.txt | |
- name: Build doc | |
run: | | |
cd "$GITHUB_WORKSPACE/ltp/doc/" | |
. .venv/bin/activate | |
make |