We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d150037 commit 3a2943aCopy full SHA for 3a2943a
.github/workflows/ruby-client-test.yaml
@@ -0,0 +1,21 @@
1
+name: Test stencil RUBY client
2
+on:
3
+ push:
4
+ paths:
5
+ - "clients/ruby/**"
6
+ branches:
7
+ - master
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - uses: actions/setup-ruby@v1
19
+ with:
20
+ ruby-version: '2.5'
21
+ - run: cd clients/ruby; bin/setup; rspec -fd
0 commit comments