Skip to content

chore(deps): update minor and patch updates #579

chore(deps): update minor and patch updates

chore(deps): update minor and patch updates #579

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@dffb23f65a78bba8db45d387d5ea1bbd6be3ef18 # v1.293.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Rubocop
run: |
bundle exec rubocop
- name: Spec
run: |
bundle exec rspec