Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosbornes committed Jun 11, 2024
1 parent a1b5f1f commit 1fd8eac
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,15 @@ jobs:
run: |
pip install uv
pip install mknotebooks
uv pip install --system .[docs]
uv pip install --system "quacc[docs] @ ."
- name: Build docs
run: mkdocs build
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
mkdocs build --strict
else
mkdocs build
fi
id: build_docs

- name: Rebuild and deploy docs
Expand Down

0 comments on commit 1fd8eac

Please sign in to comment.