-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (30 loc) · 1.22 KB
/
run-examples.yml
File metadata and controls
38 lines (30 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 .NET runtime system deps (ICU + GDI+)
run: sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libicu-dev libgdiplus libfontconfig1
# TEMPORARY: groupdocs-editor-net 26.5 is not yet on PyPI. Install the
# manylinux wheel from S3 first; `requirements.txt` then resolves it as
# already satisfied. Remove this step once the package is released.
- name: Install groupdocs-editor-net (pre-release wheel)
run: pip install "https://s3.us-west-2.amazonaws.com/groupdocs.files/2026/05/28/groupdocs_editor_net-26.5.0-py3-none-manylinux1_x86_64.whl"
- name: Install package
run: pip install -r Examples/requirements.txt
- name: Run all examples
run: python Examples/run_all_examples.py