Skip to content

Commit

Permalink
[ci] Add a separate target for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
almet committed Dec 6, 2023
1 parent d15c436 commit 3a2a4e3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,18 @@ jobs:

- name: Run Docs
run: make docs

docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python3 -m pip install -r docs/requirements.txt
- name: Run Docs
run: mkdocs build

0 comments on commit 3a2a4e3

Please sign in to comment.