Skip to content

Update code example to work in evaluation mode #4

Update code example to work in evaluation mode

Update code example to work in evaluation mode #4

Workflow file for this run

name: Run Examples
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
workflow_dispatch:
jobs:
run-examples:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
sudo apt-get update -qq
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections
sudo apt-get install -y --no-install-recommends libicu-dev libgdiplus ttf-mscorefonts-installer
- name: Install package
run: pip install -r Examples/requirements.txt
- name: Run all examples
run: python Examples/run_all_examples.py