Skip to content

Bump the bundler group across 1 directories with 1 update #7

Bump the bundler group across 1 directories with 1 update

Bump the bundler group across 1 directories with 1 update #7

Workflow file for this run

name: CI
on:
pull_request:
jobs:
build:
name: Build Ruby SDK
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run RSpec Test
run: bundle exec rspec
build-gem:
name: Build Ruby Gem
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- run: gem build descope.gemspec && gem install ./descope-*.gem
integratrion-test:
name: Integration Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- run: gem build descope.gemspec && gem install ./descope-*.gem
- run: bundle exec rspec spec/integration/integration_spec.rb