Skip to content

Code Refactoring

Code Refactoring #27

Workflow file for this run

---
name: Linter
on:
pull_request:
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.4
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automaticallyz
- name: Test
run: bundle exec rubocop --plugin rubocop-rspec