Feat/add ruby sdk (#583)
This commit is contained in:
18
sdks/ruby-client/.github/workflows/main.yml
vendored
Normal file
18
sdks/ruby-client/.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
name: Ruby
|
||||
|
||||
on: [push,pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 3.0.0
|
||||
- name: Run the default task
|
||||
run: |
|
||||
gem install bundler -v 2.2.3
|
||||
bundle install
|
||||
bundle exec rake
|
||||
Reference in New Issue
Block a user