We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d8e9e7 commit 9d801e7Copy full SHA for 9d801e7
.github/workflows/sdkbuild2run.yml
@@ -13,6 +13,9 @@ jobs:
13
build:
14
15
runs-on: windows-latest
16
+ env:
17
+ CellsCloudClientId: ${{ secrets.PRODUCTCLIENTID }}
18
+ CellsCloudClientSecret: ${{ secrets.PRODUCTCLIENTSECRET }}
19
20
steps:
21
- uses: actions/checkout@v4
@@ -24,10 +27,10 @@ jobs:
24
27
run: |
25
28
python -m pip install --upgrade pip
26
29
pip install -r requirements.txt
- pip install -r test-requirements.txt
30
+ pip install -r test-requirements.txt
31
+ - name: Install Aspose Cells Cloud
32
+ run: pip install .
33
- name: Run Examples
34
35
cd examples
36
python .\Example_QuickStart.py
-
0 commit comments