feat: exclude jupyter notebooks from line-diffs as default #5
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # - uses: webfactory/ssh-agent@v0.9.0 | |
| # with: | |
| # ssh-private-key: ${{ secrets.DEPS_SSH_KEY }} | |
| - uses: astral-sh/setup-uv@v6 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: .python-version | |
| - run: uv sync --locked --all-groups | |
| - name: Ruff formatting | |
| run: uv run ruff format --check . | |
| - name: Ruff linting | |
| run: uv run ruff check . | |
| - name: Pyright | |
| run: uv run pyright | |
| - name: Tests | |
| run: uv run pytest -q | |