Skip to content

CI fixes and configuration #6

CI fixes and configuration

CI fixes and configuration #6

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
jobs:
unit-openapi-ruby-sdk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
with:
ruby-version: "3.1"
- name: Install dependencies
run: bundle install
- name: Execute tests
run: bundle exec rspec
- name: Execute Rake build
run: bundle exec rake build