Skip to content

Bump braces from 3.0.2 to 3.0.3 in /examples/ruby-on-rails-api/descope in the npm_and_yarn group across 1 directory #234

Bump braces from 3.0.2 to 3.0.3 in /examples/ruby-on-rails-api/descope in the npm_and_yarn group across 1 directory

Bump braces from 3.0.2 to 3.0.3 in /examples/ruby-on-rails-api/descope in the npm_and_yarn group across 1 directory #234

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
inputs:
DESCOPE_LOG_LEVEL:
description: "Descope Log Level"
default: "info"
env:
DESCOPE_LOG_LEVEL: ${{ github.event.inputs.DESCOPE_LOG_LEVEL || 'info' }}
jobs:
ci:
name: Descope Ruby SDK CI
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
# We are not letting this step to run bundle install, we will do it later
bundler-cache: false
- name: Install dependencies
run: bundle install
- name: Run RSpec Test
run: bundle exec rspec spec/lib.descope
- name: Run RSpec Integration Tests
env:
DESCOPE_MANAGEMENT_KEY: ${{ secrets.DESCOPE_MANAGEMENT_KEY }}
DESCOPE_PROJECT_ID: ${{ secrets.DESCOPE_PROJECT_ID }}
run: bundle exec rspec spec/integration