Skip to content

Merge pull request #22 from Block-Logic/180960886-update-versions-for… #272

Merge pull request #22 from Block-Logic/180960886-update-versions-for…

Merge pull request #22 from Block-Logic/180960886-update-versions-for… #272

Workflow file for this run

name: Ruby CI
on: [push]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
ruby-version: ['3.0', '2.7']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec