Skip to content

added new example notebooks #53

added new example notebooks

added new example notebooks #53

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python Package Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
# this is needed only to install hatch
python-version: 3.14
- name: Install dependencies
run: |
python -m pip install --upgrade pip hatch
- name: Test with hatch
run: |
hatch test -acr