Skip to content

Commit

Permalink
Update CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
akodkod committed May 4, 2024
1 parent 1947de5 commit 505a2bc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/config/rubocop_linter_action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
versions:
- rubocop: "0.86"
- rubocop-rspec: "1.40"
- rubocop-performance: "1.6"
- rubocop: "1.63"
- rubocop-rspec: "2.29"
- rubocop-performance: "1.21"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.5, 2.6, 2.7, head, debug]
ruby: [3.0, 3.1, 3.2, head, debug]
steps:
- name: Git Checkout
uses: actions/checkout@v2
Expand All @@ -28,7 +28,7 @@ jobs:
run: sudo apt-get install libsqlite3-dev

- name: Setup Ruby
uses: ruby/setup-ruby@v1.38.0
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
Expand All @@ -49,7 +49,7 @@ jobs:
run: sudo apt-get install libsqlite3-dev

- name: Setup Ruby
uses: ruby/setup-ruby@v1.38.0
uses: ruby/setup-ruby@v1
with:
ruby-version: head
bundler-cache: true
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ group :test do
gem "simplecov", "~> 0.21"

gem "rubocop", "~> 1.63", require: false
gem "rubocop-performance", "~> 1.21", require: false
gem "rubocop-rspec", "~> 2.29", require: false
gem "rubocop-performance", "~> 1.21", require: false

Check notice on line 19 in Gemfile

View workflow job for this annotation

GitHub Actions / Rubocop Action

Gemfile#L19

Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `rubocop-performance` should appear before `rubocop-rspec`. [Bundler/OrderedGems]
end
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ This gem was initially intended for internal use and has several issues:

1. The gem is not well-documented
1. The code lacks comments
1. The repository does not include CI/CD

## Installation

Expand Down

0 comments on commit 505a2bc

Please sign in to comment.