Skip to content

Update dependency ruby to v3.4.4 #277

Update dependency ruby to v3.4.4

Update dependency ruby to v3.4.4 #277

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request: {}
defaults:
run:
shell: bash
jobs:
test:
name: Test Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.1'
- '3.2'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@1a615958ad9d422dd932dc1d5823942ee002799f # v1.227.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Rubocop
run: |
bundle exec rubocop
- name: Spec
run: |
bundle exec rspec