Skip to content

Create the public repository. #1

Create the public repository.

Create the public repository. #1

Workflow file for this run

# See: https://github.com/ruby/setup-ruby
---
name: Ruby
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
ruby-version: [3.2, 3.3, 3.4]
steps:
- uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake