Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

mise: Bump Ruby version to 3.4.6 (#33) #82

mise: Bump Ruby version to 3.4.6 (#33)

mise: Bump Ruby version to 3.4.6 (#33) #82

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec standardrb --format github --format "Standard::Formatter"
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "3.4"
steps:
- uses: actions/checkout@v5
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec