We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 82b028a + b8d771b commit 4d8e9e7Copy full SHA for 4d8e9e7
.github/workflows/sdkbuild2run.yml
@@ -0,0 +1,33 @@
1
+name: Aspose Cells Cloud SDK for Python
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
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
30
+ cd examples
31
+ python .\Example_QuickStart.py
32
33
0 commit comments