STOMP+SSL-related changes: security fixes + convenience enhancement (+ doc updates/improvements) #2115
Workflow file for this run
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
#Github Workflow to run test documentation built | |
# | |
#SPDX-FileCopyrightText: 2020 IntelMQ Team <[email protected]> | |
#SPDX-License-Identifier: AGPL-3.0-or-later | |
# | |
name: "Build the documentation with sphinx" | |
on: | |
push: | |
branches: [develop, maintenance, master] | |
paths-ignore: | |
- '.github/**' | |
pull_request: | |
branches: [develop, maintenance] | |
paths-ignore: | |
- '.github/**' | |
jobs: | |
documentationbuild: | |
runs-on: ubuntu-latest | |
name: Build the documentation | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install documentation dependencies | |
run: pip install -r docs/requirements.txt | |
- name: Build documentation | |
run: make -C docs html |