Skip to content

chore: update Ruby version from 3.1 to 3.4 in workflows and README #49

chore: update Ruby version from 3.1 to 3.4 in workflows and README

chore: update Ruby version from 3.1 to 3.4 in workflows and README #49

Workflow file for this run

name: Run CI
on:
push:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ main, 'feat/**' ]
paths-ignore:
- '**.md'
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '3.4'
- jruby-10.0
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/ci
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: ./.github/actions/build-docs
if: ${{ !startsWith(matrix.ruby-version, 'jruby') }}
build-windows:
runs-on: windows-latest
env:
LD_SKIP_DATABASE_TESTS: 1
defaults:
run:
shell: powershell
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1.299.0
with:
ruby-version: 3.4
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec spec