Skip to content

Merge pull request #13 from jg-rp/json-patch-fix #70

Merge pull request #13 from jg-rp/json-patch-fix

Merge pull request #13 from jg-rp/json-patch-fix #70

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: ${{ matrix.ruby }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ["3.1", "3.2", "3.3", truffleruby]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
- name: Run the default task
run: |
bundle install
bundle exec rake