Skip to content

Merge pull request #34 from joinhandshake/rails-7 #114

Merge pull request #34 from joinhandshake/rails-7

Merge pull request #34 from joinhandshake/rails-7 #114

Workflow file for this run

name: Ruby
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7.8', '3.0.6', '3.1.4']
steps:
# Pin to this commit: v2
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 2
- name: Run tests
run: bundle exec rake spec