Skip to content

Merge pull request #9 from CDLUC3/lockLogic #251

Merge pull request #9 from CDLUC3/lockLogic

Merge pull request #9 from CDLUC3/lockLogic #251

Workflow file for this run

name: Rubocop
on: [push, pull_request]
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
# Checkout the repo
- uses: actions/checkout@v3
# Install Ruby and run bundler
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
working-directory: src/main/ruby
# Run the Rubocop linter checks
- name: 'Run Rubocop'
run: bundle exec rubocop
working-directory: src/main/ruby