Skip to content

Python package

Python package #29854

Workflow file for this run

name: Python package
on:
pull_request:
push:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '15 */5 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools notebook
- name: Run notebooks scripts to make sure they can be run
run: |
./test_notebooks