Skip to content

build(deps-dev): update bigdecimal requirement from ~> 3.2, >= 3.2.0 to >= 3.2.0, ~> 4.0 #436

build(deps-dev): update bigdecimal requirement from ~> 3.2, >= 3.2.0 to >= 3.2.0, ~> 4.0

build(deps-dev): update bigdecimal requirement from ~> 3.2, >= 3.2.0 to >= 3.2.0, ~> 4.0 #436

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
build: # Latest ruby
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Ruby 3.4
uses: ruby/setup-ruby@v1.270.0
with:
ruby-version: 3.4
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 2 --retry 1
bundle exec rake
build_3_3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1.270.0
with:
ruby-version: 3.3
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 2 --retry 1
bundle exec rake
build_3_2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1.270.0
with:
ruby-version: 3.2
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 2 --retry 1
bundle exec rake