Skip to content

Commit

Permalink
ci: build docs on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed Jul 19, 2024
1 parent 1065c7d commit ae50959
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/docs-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,26 @@ on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install cats with documentation helpers
run: python3 -m pip install '.[docs]'
- name: Build sphinx docs
run: make -C docs html
- name: Deploy sphinx docs
if: github.ref == 'refs/heads/main'
run: |
git config user.name 'github-action'
git config user.email 'github-action'
Expand Down

0 comments on commit ae50959

Please sign in to comment.