Skip to content

Commit e6c6811

Browse files
committed
Add workflow for ruby client testing
1 parent dbd1aa0 commit e6c6811

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
10+
- "clients/ruby/**"
11+
branches:
12+
- master
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

Comments
 (0)