docs: Add docs markdown builds #99
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
#################### Maintained by repositories-manager - do not edit directly #################### | |
name: Pull request workflow | |
on: | |
pull_request: | |
# Defaults are opened, reopened, synchronize | |
types: [opened, ready_for_review, reopened, synchronize] | |
branches: | |
- 'master' | |
tags-ignore: | |
- '*.*' | |
jobs: | |
check-dependencies: | |
# Filter out Draft Pull Requests | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ensure no development packages have been set | |
run: | | |
source <(curl -sL http://ci.q-ctrl.com) | |
./ci docker run qctrl/ci-images:python-3.11-ci /scripts/check-for-internal-versions.sh | |
linting: | |
# Filter out PRs originating from this repository (triggers on-push.yml instead) | |
if: github.event.pull_request.head.repo.fork == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python dependencies | |
run: | | |
source <(curl -sL http://ci.q-ctrl.com) | |
./ci docker run qctrl/ci-images:python-3.11-ci /scripts/install-python-dependencies.sh | |
- name: Run Pre-Commit | |
run: | | |
./ci docker run qctrl/ci-images:python-3.11-ci poetry run pre-commit run -- -a | |
pytest: | |
# Filter out PRs originating from this repository (triggers on-push.yml instead) | |
if: github.event.pull_request.head.repo.fork == true | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python dependencies | |
run: | | |
source <(curl -sL http://ci.q-ctrl.com) | |
./ci docker run qctrl/ci-images:python-${{ matrix.python }}-ci /scripts/install-python-dependencies.sh | |
- name: Run Pytest | |
run: | | |
./ci docker run qctrl/ci-images:python-${{ matrix.python }}-ci /scripts/pytest.sh | |
sphinx_documentation: | |
# Filter out PRs originating from this repository (triggers on-push.yml instead) | |
if: github.event.pull_request.head.repo.fork == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Sphinx Image | |
run: | | |
source <(curl -sL http://ci.q-ctrl.com) | |
./ci docker build \ | |
-f ./docs/Dockerfile \ | |
--suffix -docs | |
#################### Maintained by repositories-manager - do not edit directly #################### |