Skip to content

[pre-commit.ci] pre-commit autoupdate #396

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #396

Workflow file for this run

name: CI
on:
# We run CI on pushes to the main branch
push:
branches:
- main
# and on all pull requests to the main branch
pull_request:
branches:
- main
# as well as upon manual triggers through the 'Actions' tab of the Github UI
workflow_dispatch:
concurrency:
group: build-and-test-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Testing Jupyter notebooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Python development requirements
run: |
pip install uv
uv pip install --system -r requirements.txt
uv pip install --system -r requirements-dev.txt
- name: Run Python tests
run: |
python -m pytest --suppress-no-test-exit-code --nbval