Skip to content

Commit

Permalink
re-enabling ifs for check source doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCN7 committed Sep 18, 2024
1 parent 26c303c commit 9ddbeb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ jobs:
doc:
- 'docs/source/**'
- name: Install dependencies
#if: steps.verify-documentation-update.outputs.doc == 'true'
if: steps.verify-documentation-update.outputs.doc == 'true'
run: |
sudo apt install pandoc
pip install -e .[doc]
- name: Check build docs
#if: steps.verify-documentation-update.outputs.doc == 'true'
if: steps.verify-documentation-update.outputs.doc == 'true'
run: sphinx-build -M html docs/source docs/build
- name: Check sphinx spelling
#if: steps.verify-documentation-update.outputs.doc == 'true'
if: steps.verify-documentation-update.outputs.doc == 'true'
run: sphinx-build -M spelling docs/source docs/build

tests:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/merge_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ jobs:
doc:
- 'docs/source/**'
- name: Install dependencies
#if: steps.verify-documentation-update.outputs.doc == 'true'
if: steps.verify-documentation-update.outputs.doc == 'true'
run: |
apt install pandoc
pip install -e .[doc]
- name: Build multiversion docs
#if: steps.verify-documentation-update.outputs.doc == 'true'
if: steps.verify-documentation-update.outputs.doc == 'true'
run: sphinx-multiversion docs/source docs/compilation
- name: Deploy to GitHub Pages
#if: steps.verify-documentation-update.outputs.doc == 'true'
if: steps.verify-documentation-update.outputs.doc == 'true'
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "actions@github.com"
Expand Down

0 comments on commit 9ddbeb7

Please sign in to comment.