Skip to content

Bump the patch-and-minor-dependencies group across 1 directory with 6 updates #331

Bump the patch-and-minor-dependencies group across 1 directory with 6 updates

Bump the patch-and-minor-dependencies group across 1 directory with 6 updates #331

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.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Ruby
on:
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby-version: ["3.3"]
rust-version: ["1.73.0"]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
channel: ${{ matrix.rust-version }}
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rubocop && bundle exec rake
env:
RACK_ENV: test