Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

Lock file maintenance #410

Lock file maintenance

Lock file maintenance #410

Workflow file for this run

name: pull-request
on:
- pull_request
jobs:
test:
strategy:
matrix:
ruby:
- "3.2"
- "3.3"
- "3.4"
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v5
- name: Install dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RuboCop
run: bin/rake rubocop
- name: Run tests
run: bin/rake test
- name: Generate docs
run: bin/rake docs