Skip to content

Merge pull request #35 from negipo/patch-1 #52

Merge pull request #35 from negipo/patch-1

Merge pull request #35 from negipo/patch-1 #52

Workflow file for this run

name: RuboCop
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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