Skip to content

Run bundle install

Run bundle install #2

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: Run bundle install
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
ruby-version: ['3.3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
working-directory: src
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install dependencies
run: |
ruby --version
bundle --version
cat Gemfile.lock
- name: Upload Gemfile.lock
uses: actions/upload-artifact@v4
with:
name: Gemfile.lock
path: Gemfile.lock