Rewrite docs content for v4 API #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Workflow that runs on code changes to a pull request. | |
| name: Docs changes | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - docs/** | |
| - .github/** | |
| workflow_dispatch: | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| name: Test documentation builds | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Quarto | |
| uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Test documentation builds | |
| run: quarto render docs |