Skip to content

chore(deps): update actions/checkout digest to 1d96c77 (#321) #162

chore(deps): update actions/checkout digest to 1d96c77 (#321)

chore(deps): update actions/checkout digest to 1d96c77 (#321) #162

Workflow file for this run

name: Pull Request CI
on:
push:
pull_request:
merge_group:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# https://www.ruby-lang.org/en/downloads/branches/
ruby: [ '3.1', '3.2', '3.3' ]
name: Ruby v${{ matrix.ruby }}
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: gem install bundler
- run: bundle install
- run: bundle exec rubocop
- run: bundle exec rspec