Skip to content

Commit

Permalink
Add workflow for ruby client testing
Browse files Browse the repository at this point in the history
  • Loading branch information
davalpargal committed Dec 6, 2021
1 parent d150037 commit 3a2943a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ruby-client-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test stencil RUBY client
on:
push:
paths:
- "clients/ruby/**"
branches:
- master
pull_request:
paths:
- "clients/ruby/**"
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.5'
- run: cd clients/ruby; bin/setup; rspec -fd

0 comments on commit 3a2943a

Please sign in to comment.