Skip to content

Bump the ruby-dependencies group with 2 updates #489

Bump the ruby-dependencies group with 2 updates

Bump the ruby-dependencies group with 2 updates #489

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- 'README.md'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rubocop
test:
strategy:
matrix:
ruby: ["3.0", 3.1, 3.2, 3.3]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rake test