Skip to content

add Bearer token text #37

add Bearer token text

add Bearer token text #37

Workflow file for this run

name: Ruby CI
on: [push, pull_request]
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: [ "3.0", "2.7", "2.6", "2.5", "2.4", "2.3", head ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: bundle exec rspec spec