Skip to content

Implement v1

Implement v1 #44

Workflow file for this run

name: RuboCop
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
RUBY_VERSION: 3.3
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop