Update OpenAPI spec and regenerate libs #356
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruby Lint | |
on: | |
pull_request: | |
paths: | |
- "ruby/**" | |
- "openapi.json" | |
jobs: | |
dotnet: | |
name: Ruby Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Regen openapi libs | |
run: | | |
yarn | |
./regen_openapi.sh | |
- name: Install dependencies | |
run: | | |
cd ruby | |
bundler install | |
- name: Build | |
run: | | |
cd ruby | |
bundler exec rake build |