Skip to content

Bump ipykernel from 6.25.0 to 6.25.1 #194

Bump ipykernel from 6.25.0 to 6.25.1

Bump ipykernel from 6.25.0 to 6.25.1 #194

Workflow file for this run

name: Docs Build Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.8
uses: actions/setup-python@master
with:
python-version: "3.8"
cache: "poetry"
- name: Install package and dependencies
run: |
poetry install --with docs --without dev
- name: Test docs build
run: |
cd docs
poetry run make html