Skip to content

Commit 5b3bd73

Browse files
committed
docs-common.yml: Add testing.sh.
1 parent a04a7e2 commit 5b3bd73

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/docs-common.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,13 @@ jobs:
7676
else
7777
cd doc && ./build_docs -b ${PWD}/_build -c
7878
fi
79+
80+
# TODO: Split testing.sh tests into their own steps in this job
81+
- name: Text Sphinx builds with omnibus script
82+
if: success() || failure()
83+
run: |
84+
if ${{ inputs.use_conda }}; then
85+
cd doc && conda run -n ${{ inputs.conda_env_name }} ./testing.sh
86+
else
87+
cd doc && ./testing.sh
88+
fi

0 commit comments

Comments
 (0)