Skip to content

Update README.md to fix UPGRADING.md link #51

Update README.md to fix UPGRADING.md link

Update README.md to fix UPGRADING.md link #51

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