Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Merge pull request #188 from apiology/allow_new_rbs #133

Merge pull request #188 from apiology/allow_new_rbs

Merge pull request #188 from apiology/allow_new_rbs #133

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
ruby: [3.0, 3.1, 3.2, 3.3, 3.4]
continue-on-error: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake