Skip to content

DEVDOCS-15065 removing outdated comment #78

DEVDOCS-15065 removing outdated comment

DEVDOCS-15065 removing outdated comment #78

Workflow file for this run

# This workflow uses actions that are not certified by GitHub. They are
# provided by a third-party and are governed by separate terms of service,
# privacy policy, and support documentation.
#
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby on Rails CI"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.1.2
- name: Run linter
run: bundle exec rubocop --parallel
- name: Run tests
run: |
gem install docusign_esign
gem install docusign_click
ruby test/run_tests.rb
env:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
USER_ID: ${{ secrets.USER_ID }}
SIGNER_EMAIL: ${{ secrets.SIGNER_EMAIL }}
SIGNER_NAME: ${{ secrets.SIGNER_NAME }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}