Skip to content

Commit

Permalink
Merge pull request #212 from bastelfreak/dependabot
Browse files Browse the repository at this point in the history
Implement RuboCop
  • Loading branch information
bastelfreak authored Mar 28, 2023
2 parents bbc210b + a2be809 commit 4dc270f
Show file tree
Hide file tree
Showing 7 changed files with 609 additions and 8 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
name: Test

on:
- pull_request
- push
pull_request: {}
push:
branches:
- master

env:
BUNDLE_WITHOUT: release

jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop


rspec:
runs-on: ubuntu-latest
strategy:
Expand Down
23 changes: 23 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
inherit_from: .rubocop_todo.yml

require:
- rubocop-performance
- rubocop-rake
- rubocop-rspec

AllCops:
TargetRubyVersion: 2.4
NewCops: enable

Style/HashSyntax:
Enabled: false

Metrics:
Enabled: false

Style:
Enabled: false

Layout:
Enabled: false
Loading

0 comments on commit 4dc270f

Please sign in to comment.