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 9bd01f3 commit fb7885fCopy full SHA for fb7885f
.github/workflows/sdkbuild2run.yml
@@ -9,6 +9,9 @@ on:
9
jobs:
10
build-and-test:
11
runs-on: ubuntu-latest
12
+ env:
13
+ CellsCloudClientId: ${{ secrets.PRODUCTCLIENTID }}
14
+ CellsCloudClientSecret: ${{ secrets.PRODUCTCLIENTSECRET }}
15
strategy:
16
matrix:
17
ruby-version: ["3.0", "3.1", "3.2"]
@@ -28,4 +31,11 @@ jobs:
28
31
gem install bundler
29
32
bundle install
30
33
gem build aspose_cells_cloud.gemspec
34
+ gem install aspose_cells_cloud-*.gem
35
+
36
+ - name: Run examples
37
+ run: |
38
+ cd examples
39
+ ruby Example_QuickStart.rb
40
41
0 commit comments