Skip to content

Merge pull request #56 from ruby/dependabot/github_actions/step-secur… #188

Merge pull request #56 from ruby/dependabot/github_actions/step-secur…

Merge pull request #56 from ruby/dependabot/github_actions/step-secur… #188

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: ["3.0", 3.1, 3.2, 3.3, 3.4]
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rake test