Support ClExpr
#231
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check examples | |
on: | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# 04:00 every Saturday morning | |
- cron: '0 4 * * 6' | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
outputs: | |
examples: ${{ steps.filter.outputs.examples }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
base: ${{ github.ref }} | |
filters: | | |
examples: | |
- 'docs/examples/**' | |
- '.github/**' | |
check: | |
name: check examples | |
needs: changes | |
if: github.event_name == 'schedule' || needs.changes.outputs.examples == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* +refs/heads/*:refs/remotes/origin/* | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: install python requirements for notebooks | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install . | |
cd docs/examples | |
python -m pip install p2j | |
- name: test example notebooks | |
run: | | |
cd docs/examples | |
./check-examples |