Skip to content

small update to recommendation #328

small update to recommendation

small update to recommendation #328

Workflow file for this run

name: RSpec Tests
on: [push]
jobs:
build:
name: Rspec
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
- name: Run bundle install
working-directory: ${{env.api-dir}}
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Build and test with rspec
working-directory: ${{env.api-dir}}
env:
RAILS_ENV: test
run: bundle exec rspec