Skip to content

Update Ruby dependencies #3364

Update Ruby dependencies

Update Ruby dependencies #3364

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
- push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.4", "4.0"]
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v5
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: bundle config path vendor/bundle
- name: Install dependencies
run: bin/setup --skip-server
- name: Herb analyze
run: bundle exec herb analyze app --non-interactive --no-log-file
- name: Run tests
run: bundle exec bin/ci