Skip to content

Bump the patch-and-minor-dependencies group with 7 updates #402

Bump the patch-and-minor-dependencies group with 7 updates

Bump the patch-and-minor-dependencies group with 7 updates #402

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
MT_COMPAT: true
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- "3.2"
- "3.1"
- "3.0"
- "2.7"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
- name: Run rubocop
run: bundle exec rubocop --no-server