Skip to content

chore: Descope Ruby SDK Initial Release. #133

chore: Descope Ruby SDK Initial Release.

chore: Descope Ruby SDK Initial Release. #133

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
# in order to release use conventional commits
# $ git commit --allow-empty -m "chore: release 1.0.0" -m "Release-As: 1.0.0" && git push
# this will open a new PR with the changelog and bump the version
# Release Please will assume that you are using Conventional Commit messages.
#
# The most important prefixes you should have in mind are:
#
# fix: which represents bug fixes, and correlates to a SemVer patch.
# feat: which represents a new feature, and correlates to a SemVer minor.
# feat!:, or fix!:, refactor!:, etc., which represent a breaking change (indicated by the !) and will result in a SemVer major.
- uses: google-github-actions/release-please-action@v4
id: release
if: github.ref == 'refs/heads/main'