Readme fixes. (#71) #231
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: 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 |