Skip to content

feat: expose staged index segment transactions #5

feat: expose staged index segment transactions

feat: expose staged index segment transactions #5

Workflow file for this run

name: Run notebook
on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- python/**
- rust/**
- protos/**
- notebooks/**
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
linux:
timeout-minutes: 30
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
lfs: true
- name: Set up Python
uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4
with:
python-version: "3.10"
- uses: ./.github/workflows/build_linux_wheel
with:
python-minor-version: "10"
- name: Pip install
working-directory: python
shell: bash
run: |
pip3 install jupyter duckdb>=0.7
pip3 install $(ls target/wheels/*.whl)
- name: Run python tests
shell: bash
working-directory: notebooks
run: |
jupyter nbconvert --to notebook --execute quickstart.ipynb