Skip to content

Merge pull request #33 from tomas-stefano/update-2.0.0 #5

Merge pull request #33 from tomas-stefano/update-2.0.0

Merge pull request #33 from tomas-stefano/update-2.0.0 #5

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['3.1', '3.2', '3.3']
include:
- os: ubuntu-latest
ruby: jruby
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec