Skip to content

Commit

Permalink
test if this passes
Browse files Browse the repository at this point in the history
  • Loading branch information
k-kumawat committed Jul 8, 2024
1 parent 88b3983 commit 00f0601
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:

strategy:
matrix:
ruby-version: ['2.6.10', '3.0']
ruby-version: ['2.7.7', '3.0']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.133.0
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
Expand All @@ -39,13 +39,13 @@ jobs:
name: linters / rubocop
runs-on: ubuntu-latest
env:
RUBY_VERSION: 2.6.10
RUBY_VERSION: 2.7.7
steps:
- name: Codebase Checkout
uses: actions/checkout@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1.133.0
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7
9 changes: 3 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ GEM
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
parallel (1.22.1)
parser (3.3.3.0)
parser (3.2.0.0)
ast (~> 2.4.1)
racc
power_assert (2.0.3)
racc (1.8.0)
rack (2.2.9)
rack-protection (3.0.5)
rack
Expand Down Expand Up @@ -47,8 +45,8 @@ GEM
rubocop-ast (>= 1.23.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-ast (1.24.1)
parser (>= 3.1.1.0)
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.5)
sinatra (3.0.5)
Expand All @@ -70,7 +68,6 @@ DEPENDENCIES
resque
resque-lock!
rubocop (~> 1.41.1)
rubocop-ast (~> 1.30.0)
test-unit

BUNDLED WITH
Expand Down
1 change: 0 additions & 1 deletion resque-lock.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,4 @@ For example:
desc

s.add_development_dependency 'rubocop', '~> 1.41.1'
s.add_development_dependency 'rubocop-ast', '~> 1.30.0'
end

0 comments on commit 00f0601

Please sign in to comment.