From 44ee38e33fdd3c37ca63ac727c9aeceba0112129 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 3 Jun 2024 11:50:29 +0100 Subject: [PATCH] run_sphinx flag --- .github/workflows/python_checks.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_checks.yml b/.github/workflows/python_checks.yml index b7ab019..5d6fb79 100644 --- a/.github/workflows/python_checks.yml +++ b/.github/workflows/python_checks.yml @@ -72,7 +72,6 @@ on: required: false type: string default: "31" # Action fails on any message - rat_config_file: description: > Which xml config file to use for rat. @@ -83,7 +82,11 @@ on: required: false type: string default: "rat_asl20.xml" - + run_sphinx: + description: Flag to say if sphinx should be run + required: false + type: string + default: true env: PRERELEASE: "3.13" @@ -117,6 +120,7 @@ jobs: config_file: ${{ inputs.rat_config_file }} - name: Build documentation with sphinx + if: ${{ inputs.run_sphinx == 'true' }} uses: SpiNNakerManchester/SupportScripts/actions/sphinx@main with: directory: doc/source