Skip to content

Merge branch 'ropensci' of https://github.com/ropensci-org/buffy into… #42

Merge branch 'ropensci' of https://github.com/ropensci-org/buffy into…

Merge branch 'ropensci' of https://github.com/ropensci-org/buffy into… #42

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.failure-allowed }}
strategy:
matrix:
ruby-version: ['2.7.8', '3.0.6', '3.1.4', '3.2.2']
failure-allowed: [false]
include:
- ruby-version: 'truffleruby'
failure-allowed: true
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: |
ruby -v
bundle exec rspec spec