Skip to content

Commit

Permalink
Merge pull request #79 from pedro-psb/add-new-docs-ci
Browse files Browse the repository at this point in the history
Add unified docs-ci
  • Loading branch information
dkliban committed May 9, 2024
2 parents ca4a85e + 773cff5 commit 5240a38
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Docs CI"

on:
workflow_call:

jobs:
test:
runs-on: "ubuntu-20.04"
steps:
- uses: "actions/checkout@v4"
- name: "Set up Python"
uses: "actions/setup-python@v5"
with:
python-version: "3.11"
- name: "Install Test Dependencies"
run: |
pip install -r doc_requirements.txt
- name: Build docs
run: make docs
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
- pull_request
- push
jobs:
docs:
uses: "./.github/workflows/docs-ci.yml"

centos:
runs-on: ubuntu-latest
strategy:
Expand Down
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
help: ## Show this help.
@sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST)

docs: ## Build unified docs.
pulp-docs build

servedocs: ## Serves unified docs.
pulp-docs serve

.PHONY: docs servedocs help
1 change: 1 addition & 0 deletions doc_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pulp-docs @ git+https://github.com/pulp/pulp-docs@main

0 comments on commit 5240a38

Please sign in to comment.