Skip to content

Bump jupyter-server from 2.7.2 to 2.11.2 #120

Bump jupyter-server from 2.7.2 to 2.11.2

Bump jupyter-server from 2.7.2 to 2.11.2 #120

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx install ruff
- run: ruff check --output-format=github .
- run: ruff format --check .
- run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "poetry"
- run: poetry install --all-extras
- run: poetry run mypy .
- run: poetry run pytest