Skip to content

Commit

Permalink
Add Ruby 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
skryukov committed Dec 25, 2024
1 parent b1ffe5b commit e169fe8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.4"
bundler-cache: true
- name: Run StandardRB
run: bundle exec standardrb
Expand All @@ -33,14 +33,16 @@ jobs:
strategy:
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
- "jruby"
- "truffleruby"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Ruby
Expand Down
1 change: 1 addition & 0 deletions json_skooma.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Gem::Specification.new do |spec|
spec.files = Dir.glob("lib/**/*") + Dir.glob("data/**/{*.json,README.md}") + %w[README.md LICENSE.txt CHANGELOG.md]
spec.require_paths = ["lib"]

spec.add_runtime_dependency "bigdecimal"
spec.add_runtime_dependency "zeitwerk", "~> 2.6"
spec.add_runtime_dependency "hana", "~> 1.3"
spec.add_runtime_dependency "regexp_parser", "~> 2.0"
Expand Down

0 comments on commit e169fe8

Please sign in to comment.