Skip to content

Ci/add lint and test workflows #1

Ci/add lint and test workflows

Ci/add lint and test workflows #1

Workflow file for this run

name: RSpec
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7.7'
bundler-cache: true
- name: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run RSpec
run: bundle exec rspec