Skip to content

Merge pull request #15 from BrightCoders-Institute/feat/#12/post_partial #21

Merge pull request #15 from BrightCoders-Institute/feat/#12/post_partial

Merge pull request #15 from BrightCoders-Institute/feat/#12/post_partial #21

Workflow file for this run

name: RuboCop
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: gem install rubocop
- name: Run RuboCop
run: rubocop --format simple --fail-level error