Skip to content

Merge pull request #75 from square/tsutton/feat-sparse #71

Merge pull request #75 from square/tsutton/feat-sparse

Merge pull request #75 from square/tsutton/feat-sparse #71

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
ruby-version: ["3.2", "3.3", "3.4", "3.5.0-preview1"]
runner: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v5
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run rake
run: bundle exec rake