Skip to content

Fix all rubocop warnings and add extensive cooments to the code #6

Fix all rubocop warnings and add extensive cooments to the code

Fix all rubocop warnings and add extensive cooments to the code #6

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby and install dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Run RSpec tests
run: bundle exec rake