Add ruff lint job to CI #4
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
| name: docs | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| jobs: | |
| doctest: | |
| name: Documentation doctests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Run documentation doctests | |
| run: >- | |
| uv run --extra docs --extra pandas --extra polars | |
| sphinx-build -b doctest docs/source docs/_build/doctest |