Skip to content

Bump jupyterlab from 4.2.4 to 4.2.5 #265

Bump jupyterlab from 4.2.4 to 4.2.5

Bump jupyterlab from 4.2.4 to 4.2.5 #265

Workflow file for this run

name: Pytest with minimum 95% coverage
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Test with ${{matrix.python}} on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PAT }}
- name: Install Dependencies
run: pip install nox poetry
- name: Run tests with Nox
run: nox -s lint tests_github --verbose