Skip to content

Commit

Permalink
Upgrade CI
Browse files Browse the repository at this point in the history
  • Loading branch information
inkstak committed Aug 21, 2024
1 parent e27ac8d commit a1c615e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ '3.0', '3.1', '3.2', '3.3', 'head' ]
ruby-version: [ '2.7', '3.0', '3.1', '3.2', '3.3', 'head' ]

steps:
- uses: actions/checkout@v3
Expand Down
16 changes: 7 additions & 9 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
inherit_from: .rubocop_todo.yml

require:
- standard
- standard-custom
- standard-performance
- rubocop-performance
- rubocop-rspec
- rubocop-rake
- standard

inherit_gem:
standard:
- config/base.yml
- config/ruby-2.5.yml
- config/ruby-2.6.yml
- config/ruby-2.7.yml
- config/ruby-3.0.yml
standard: config/ruby-3.0.yml
standard-custom: config/base.yml
standard-performance: config/base.yml

AllCops:
# Last supported version before EOL
# See: https://endoflife.date/ruby
TargetRubyVersion: 3.0
NewCops: enable
Exclude:
- '**/tmp/**/*'
- '**/vendor/**/*'
23 changes: 23 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,26 @@ end
appraise "elasticsearch-8.9" do
gem "elasticsearch", "~> 8.9.0"
end

appraise "elasticsearch-8.15" do
gem "elasticsearch", "~> 8.15.0"
end

# Supported versions of Rails:
# https://endoflife.date/rails
#
appraise "rails-6.1" do
gem "activesupport", "~> 7.0.x"
end

appraise "rails-7.0" do
gem "activesupport", "~> 7.0.x"
end

appraise "rails-7.1" do
gem "activesupport", "~> 7.1.x"
end

appraise "rails-7.2" do
gem "activesupport", "~> 7.2.x"
end
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ gemspec

gem "gem-release"
gem "simplecov_json_formatter"
gem "sqlite3", "~> 1.4.0"
gem "sqlite3"
gem "amazing_print"

0 comments on commit a1c615e

Please sign in to comment.