Skip to content

chore(deps): bump jupyter-server from 2.17.0 to 2.20.0 #1571

chore(deps): bump jupyter-server from 2.17.0 to 2.20.0

chore(deps): bump jupyter-server from 2.17.0 to 2.20.0 #1571

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v7
with:
submodules: true
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Lint with Ruff
run: uv run ruff check --output-format=github .
- name: Format check with Ruff
run: uv run ruff format --check .
- name: Test with pytest
run: uv run pytest --cov=. --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}