Skip to content

chore(deps): update actions/checkout digest to a5ac7e5 #169

chore(deps): update actions/checkout digest to a5ac7e5

chore(deps): update actions/checkout digest to a5ac7e5 #169

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@a5ac7e51b41094c92402da3b24376905380afc29 # 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