Skip to content

fix(java): Properly encode nested parameters with file upload (#688) #1410

fix(java): Properly encode nested parameters with file upload (#688)

fix(java): Properly encode nested parameters with file upload (#688) #1410

Workflow file for this run

name: Run Ruby Tests
on: [push]
jobs:
rspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
npm install
npm run generate.ruby
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.1
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
working-directory: ./clients/ruby
- name: Run tests
run: |
cd ./clients/ruby
bundle exec rspec
- name: Check licenses
uses: phrase/actions/lawa-ruby-ci@v1
with:
working-directory: ./clients/ruby
github-token: ${{ secrets.GH_LAWA_ACCESS_TOKEN }}