Skip to content

Lock ruby/setup-ruby to a git commit #535

Lock ruby/setup-ruby to a git commit

Lock ruby/setup-ruby to a git commit #535

Workflow file for this run

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