Skip to content

Commit 4d8e9e7

Browse files
committed
2 parents 82b028a + b8d771b commit 4d8e9e7

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/sdkbuild2run.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Aspose Cells Cloud SDK for Python
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build:
14+
15+
runs-on: windows-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Set up Python 3.10
20+
uses: actions/setup-python@v3
21+
with:
22+
python-version: "3.10"
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
pip install -r test-requirements.txt
28+
- name: Run Examples
29+
run: |
30+
cd examples
31+
python .\Example_QuickStart.py
32+
33+

0 commit comments

Comments
 (0)