Skip to content

chore: updated dependencies #1978

chore: updated dependencies

chore: updated dependencies #1978

Workflow file for this run

name: Rubocop
on: [push, pull_request]
jobs:
rubocop:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: 'Determine Ruby and Bundler Versions from Gemfile.lock'
run: |
echo "RUBY_VERSION=`cat ./Gemfile.lock | grep -A 1 'RUBY VERSION' | grep 'ruby' | grep -oE '[0-9]\.[0-9]'`" >> $GITHUB_ENV
# Install Ruby and run bundler
- name: 'Install Ruby'
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
# Run the Rubocop linter checks
- name: 'Run Rubocop'
run: bin/rubocop