Skip to content

Add rest of Title API #319

Add rest of Title API

Add rest of Title API #319

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip jupyterlab~=3.0
- name: Install the ipylab Python package and JupyterLab extension
run: |
python -m pip install .
jupyter labextension list 2>&1 | grep -ie "ipylab.*enabled.*ok" -
- name: Browser check
run: |
python -m jupyterlab.browser_check
- name: Check ipylab can be imported
run: |
python -c "from ipylab import JupyterFrontEnd"