This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Lock file maintenance #410
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |