Skip to content

feat: Add jupytext support for notebooks #4

feat: Add jupytext support for notebooks

feat: Add jupytext support for notebooks #4

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install --system --upgrade pip wheel
uv pip install --system pytest coverage
uv pip install --system --strict --requirement requirements.lock
- name: List installed Python packages
run: python -m pip list
- name: Test with pytest and coverage
run: |
coverage run --module pytest tests/